diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-02-28 20:00:24 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-02-28 20:00:24 +0000 |
commit | 9a0fa4a78d54caee6fa61085f21c9899cc0a91fc (patch) | |
tree | b9906486296388dfbb8214a33518597c26ea6d68 /demos | |
parent | 13e755ca94d25dfed6c09a22a9f30a5fd04f425b (diff) | |
download | gtk+-9a0fa4a78d54caee6fa61085f21c9899cc0a91fc.tar.gz |
#ifdef HAVE_FLOCKFILE, not #ifndef HAVE_FLOCKFILE. (#135642, J. Ali
Sat Feb 28 14:48:35 2004 Owen Taylor <otaylor@redhat.com>
* demos/gtk-demo/main.c (read_line): #ifdef HAVE_FLOCKFILE,
not #ifndef HAVE_FLOCKFILE. (#135642, J. Ali Harlow)
Diffstat (limited to 'demos')
-rw-r--r-- | demos/gtk-demo/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/gtk-demo/main.c b/demos/gtk-demo/main.c index fb2e7a5b22..f4a893f2a7 100644 --- a/demos/gtk-demo/main.c +++ b/demos/gtk-demo/main.c @@ -122,7 +122,7 @@ read_line (FILE *stream, GString *str) { int c; -#ifndef HAVE_FLOCKFILE +#ifdef HAVE_FLOCKFILE c = getc_unlocked (stream); #else c = getc (stream); |