OSDN Git Service

* src/tkWinPrintText.c (DisplayDLineToDrawable): Fix
authormdejong <mdejong>
Thu, 2 Aug 2001 21:57:32 +0000 (21:57 +0000)
committermdejong <mdejong>
Thu, 2 Aug 2001 21:57:32 +0000 (21:57 +0000)
compiler warning by adding missing static modifier
to funciton declaration.

libgui/ChangeLog
libgui/src/tkWinPrintText.c

index 8b1fc9b..f12013e 100644 (file)
@@ -1,5 +1,11 @@
 2001-08-02  Mo DeJong  <mdejong@redhat.com>
 
+       * src/tkWinPrintText.c (DisplayDLineToDrawable): Fix
+       compiler warning by adding missing static modifier
+       to funciton declaration.
+
+2001-08-02  Mo DeJong  <mdejong@redhat.com>
+
        * config.h.in: Regen.
        * configure: Regen.
        * configure.in: Don't check for strdup since it
index a9ffd36..2c21daf 100644 (file)
@@ -212,7 +212,8 @@ typedef struct TextStyle {
 
 
 
-void DisplayDLineToDrawable(TkText *textPtr, DLine *dlPtr, DLine *prevPtr, TkWinDrawable *drawable);
+static void
+DisplayDLineToDrawable(TkText *textPtr, DLine *dlPtr, DLine *prevPtr, TkWinDrawable *drawable);
 
 /*
  *--------------------------------------------------------------