comparison util.c @ 187:41f8ee33771e

small stylistic fix
author arg@10ksloc.org
date Fri, 04 Aug 2006 10:27:16 +0200
parents 21071ae1fe68
children 523df4a3c1c4
comparison
equal deleted inserted replaced
186:c0defd7d5a5a 187:41f8ee33771e
28 bad_malloc(size); 28 bad_malloc(size);
29 return res; 29 return res;
30 } 30 }
31 31
32 void 32 void
33 eprint(const char *errstr, ...) { 33 eprint(const char *errstr, ...)
34 {
34 va_list ap; 35 va_list ap;
35 36
36 va_start(ap, errstr); 37 va_start(ap, errstr);
37 vfprintf(stderr, errstr, ap); 38 vfprintf(stderr, errstr, ap);
38 va_end(ap); 39 va_end(ap);