]> Pileus Git - ~andy/gtk/commitdiff
Fix undefined variable typo. Patch from Simon Floery <simon.floery@gmx.at>
authorAlex Larsson <alexl@redhat.com>
Fri, 5 Apr 2002 15:11:00 +0000 (15:11 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Fri, 5 Apr 2002 15:11:00 +0000 (15:11 +0000)
2002-04-05  Alex Larsson  <alexl@redhat.com>

* gdk/linux-fb/gdkkeyboard-fb.c (write_string):
Fix undefined variable typo.
Patch from Simon Floery <simon.floery@gmx.at>

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/linux-fb/gdkkeyboard-fb.c

index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index cf4123ae6a4f2fd45be627af8cddfb34a14cfa8d..52e0d6a01e80deb99a448b7b2ee78ba88bb074f4 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+       Fix undefined variable typo.
+       Patch from Simon Floery <simon.floery@gmx.at>
+
 Fri Apr  5 01:06:15 2002  Tim Janik  <timj@gtk.org>
 
        * gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
index e8af45c0b5ac754ea159d9771c24300be2e3729e..0a458b91c4c041796400382e2826bac5d97057e4 100644 (file)
@@ -876,7 +876,7 @@ static gboolean
 write_string (gint   fd,
              gchar *str)
 {
-  gsize to_write = strlen (string);
+  gsize to_write = strlen (str);
 
   while (to_write > 0)
     {