diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-10-06 07:50:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-10-06 07:50:18 +0000 |
commit | 39af394a1c3ae1d8ac71ad263a7c524988702c2e (patch) | |
tree | 4ba44670440d52ff6c3b07fdef35ae3384f3dc5a /lib/amigaos.c | |
parent | 5c7dcc6c33bb9e9621cf09ada4a15f310cf1c0e0 (diff) |
removed tabs and trailing whitespace from source
Diffstat (limited to 'lib/amigaos.c')
-rw-r--r-- | lib/amigaos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/amigaos.c b/lib/amigaos.c index d81384618..13336ce05 100644 --- a/lib/amigaos.c +++ b/lib/amigaos.c @@ -30,7 +30,7 @@ void amiga_cleanup() { if(SocketBase) CloseLibrary(SocketBase); - + SocketBase = NULL; } @@ -38,12 +38,12 @@ BOOL amiga_init() { if(!SocketBase) SocketBase = OpenLibrary("bsdsocket.library", 4); - + if(!SocketBase) { fprintf(stderr, "No TCP/IP Stack running!\n\a"); return FALSE; } - + atexit(amiga_cleanup); return TRUE; } |