]> granicus.if.org Git - graphviz/commitdiff
Janitor - add "void" to suppress "warning: function declaration isn't a prototype"
authorellson <devnull@localhost>
Tue, 25 Apr 2006 16:27:15 +0000 (16:27 +0000)
committerellson <devnull@localhost>
Tue, 25 Apr 2006 16:27:15 +0000 (16:27 +0000)
lib/common/htmlparse.y

index de2025706d8ad3f87bb7e8526e52e348e8ff6c7f..f23e818ebf4309890f21e33e09be0761e39a819e 100644 (file)
@@ -316,7 +316,7 @@ mkText (const char* lastl)
 #endif
 
 static htmltxt_t*
-mkText()
+mkText(void)
 {
     int cnt;
     Dt_t * iline = HTMLstate.flineList;
@@ -436,7 +436,7 @@ static htmllabel_t* mkLabel (void* obj, int kind)
  * put on artificially during in parseHTML.
  */
 static void
-freeFontstack()
+freeFontstack(void)
 {
     sfont_t* s;
     sfont_t* next;
@@ -520,7 +520,7 @@ pushFont (htmlfont_t *f)
 /* popFont:
  */
 static void 
-popFont ()
+popFont (void)
 {
     sfont_t* curfont = HTMLstate.fontstack;
     sfont_t* prevfont = curfont->pfont;