123a13597deea2095debbd4a1800fe41e85eb7c5 angie Wed Apr 25 15:41:21 2012 -0700 Adding a missing va_end for tidiness' sake. diff --git src/hg/hgTables/hgTables.c src/hg/hgTables/hgTables.c index 77cacce..eb3325d 100644 --- src/hg/hgTables/hgTables.c +++ src/hg/hgTables/hgTables.c @@ -142,30 +142,31 @@ } static void vaHtmlOpen(char *format, va_list args) /* Start up a page that will be in html format. */ { puts("Content-Type:text/html\n"); cartVaWebStart(cart, database, format, args); } void htmlOpen(char *format, ...) /* Start up a page that will be in html format. */ { va_list args; va_start(args, format); vaHtmlOpen(format, args); +va_end(args); } void htmlClose() /* Close down html format page. */ { cartWebEnd(); } void explainWhyNoResults(FILE *f) /* Put up a little explanation to user of why they got nothing. */ { if (f == NULL) f = stdout; fprintf(f, "# No results");