Skip to content

Commit

Permalink
removed extraneous whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
edma2 committed Nov 23, 2011
1 parent af958bf commit d93593f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sup.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@ void do_work(int client);


void logger(const char *format, ...) { void logger(const char *format, ...) {
va_list ap; va_list ap;

va_start(ap, format); va_start(ap, format);
fprintf(stderr, "sup: "); fprintf(stderr, "sup: ");
vfprintf (stderr, format, ap); vfprintf(stderr, format, ap);
va_end (ap); va_end(ap);
fprintf (stderr, "\n"); fprintf(stderr, "\n");
} }


int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
Expand Down

0 comments on commit d93593f

Please sign in to comment.