test-getaddrinfo: whitespace cleanup
authorEric Blake <ebb9@byu.net>
Fri, 27 Mar 2009 19:28:27 +0000 (13:28 -0600)
committerEric Blake <ebb9@byu.net>
Sat, 28 Mar 2009 19:37:04 +0000 (13:37 -0600)
* tests/test-getaddrinfo.c: Fix whitespace.

Signed-off-by: Eric Blake <ebb9@byu.net>
tests/test-getaddrinfo.c

index 4816920..eeea3f7 100644 (file)
@@ -87,7 +87,7 @@ int simple (char *host, char *service)
       if (res == EAI_NONAME)
        return 0;
       /* Solaris reports EAI_SERVICE for "http" and "https".  Don't
-         fail the test merely because of this.  */
+        fail the test merely because of this.  */
       if (res == EAI_SERVICE)
        return 0;
       /* AIX reports EAI_NODATA for "https".  Don't fail the test
@@ -96,7 +96,7 @@ int simple (char *host, char *service)
        return 0;
       /* Provide details if errno was set.  */
       if (res == EAI_SYSTEM)
-         dbgprintf ("system error: %s\n", strerror (err));
+       dbgprintf ("system error: %s\n", strerror (err));
 
       return 1;
     }