diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
| commit | 7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b (patch) | |
| tree | 41badbabc8140d865699b5f639cd4c53edbe3851 /unix/tclLoadAix.c | |
| parent | 3ba2524ad4dcbada77fd5079cb69007cdea2a5e9 (diff) | |
| parent | 6d093a49bdc100e9422cbde3980c3136f5989922 (diff) | |
| download | tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.zip tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.tar.gz tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.tar.bz2 | |
Few more spacing/formatting tweaks
Diffstat (limited to 'unix/tclLoadAix.c')
| -rw-r--r-- | unix/tclLoadAix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclLoadAix.c b/unix/tclLoadAix.c index 17fca04..2f6b6d4 100644 --- a/unix/tclLoadAix.c +++ b/unix/tclLoadAix.c @@ -122,7 +122,7 @@ dlopen( for (mp = modList; mp; mp = mp->next) { if (strcmp(mp->name, path) == 0) { mp->refCnt++; - return (void *) mp; + return (void *)mp; } } @@ -142,7 +142,7 @@ dlopen( * a normal char *. Ugly. */ - mp->entry = (void *) load((char *)path, L_NOAUTODEFER, NULL); + mp->entry = (void *)load((char *)path, L_NOAUTODEFER, NULL); if (mp->entry == NULL) { free(mp->name); free(mp); @@ -231,7 +231,7 @@ dlopen( errvalid = 0; } - return (void *) mp; + return (void *)mp; } /* |
