]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-vasprintf.c
Reduce the amount of code by moving the three copies of the ohash
[mandoc.git] / test-vasprintf.c
index 1b2544a446a7bea69e19bf6f95a28242df4460e1..bdb4408e300bcb000db4ad50a7d698ecc4400cf5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-vasprintf.c,v 1.2 2015/03/20 15:32:02 schwarze Exp $  */
+/*     $Id: test-vasprintf.c,v 1.3 2015/10/06 18:32:20 schwarze Exp $  */
 /*
  * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -33,7 +33,7 @@ testfunc(char **ret, const char *format, ...)
        irc = vasprintf(ret, format, ap);
        va_end(ap);
 
-       return(irc);
+       return irc;
 }
 
 int
@@ -42,8 +42,8 @@ main(void)
        char    *ret;
 
        if (testfunc(&ret, "%s.", "Text") != 5)
-               return(1);
+               return 1;
        if (strcmp(ret, "Text."))
-               return(2);
-       return(0);
+               return 2;
+       return 0;
 }