summaryrefslogtreecommitdiff
path: root/libio/genops.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-11-01 17:50:30 +0100
committerThomas Schwinge <thomas@codesourcery.com>2012-11-01 17:56:48 +0100
commit341dd67392b90af0e76913d0779b1bdafe64d1e4 (patch)
tree2477dc563997404e7b1d4d3bcb6c945cd2aa81a0 /libio/genops.c
parent473611b22d630a5cbb870d2a7edf08071d4d8ace (diff)
Change type of constant to avoid a warning.
Warning has been introduced in commit 7583a88d1c7170caad26966bcea8bfc2c92093ba.
Diffstat (limited to 'libio/genops.c')
-rw-r--r--libio/genops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/genops.c b/libio/genops.c
index 0a81a5d101..61e59f95a1 100644
--- a/libio/genops.c
+++ b/libio/genops.c
@@ -822,7 +822,7 @@ _IO_flush_all_lockp (int do_lock)
int last_stamp;
#ifdef _IO_MTSAFE_IO
- __libc_cleanup_region_start (do_lock, flush_cleanup, 0);
+ __libc_cleanup_region_start (do_lock, flush_cleanup, NULL);
if (do_lock)
_IO_lock_lock (list_all_lock);
#endif