diff options
author | Alex Larsson <alexl@redhat.com> | 2002-04-05 15:11:00 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2002-04-05 15:11:00 +0000 |
commit | c744f44f0c5476b113973f364e97ef3616e67cc8 (patch) | |
tree | df055721a9d274b5875ee257e04b3dfdb1221b6e | |
parent | cca4abf498309f3aff2a0d924f23b3d6bacc82d9 (diff) | |
download | gtk+-c744f44f0c5476b113973f364e97ef3616e67cc8.tar.gz |
Fix undefined variable typo. Patch from Simon Floery <simon.floery@gmx.at>
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>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 6 | ||||
-rw-r--r-- | gdk/linux-fb/gdkkeyboard-fb.c | 2 |
7 files changed, 37 insertions, 1 deletions
@@ -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 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index cf4123ae6a..52e0d6a01e 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -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 diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index cf4123ae6a..52e0d6a01e 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -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 diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index cf4123ae6a..52e0d6a01e 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -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 diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index cf4123ae6a..52e0d6a01e 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -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 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index cf4123ae6a..52e0d6a01e 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -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 diff --git a/gdk/linux-fb/gdkkeyboard-fb.c b/gdk/linux-fb/gdkkeyboard-fb.c index e8af45c0b5..0a458b91c4 100644 --- a/gdk/linux-fb/gdkkeyboard-fb.c +++ b/gdk/linux-fb/gdkkeyboard-fb.c @@ -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) { |