diff options
Diffstat (limited to 'libio/ioputs.c')
-rw-r--r-- | libio/ioputs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/ioputs.c b/libio/ioputs.c index 706b20b492..0a80fb7148 100644 --- a/libio/ioputs.c +++ b/libio/ioputs.c @@ -32,7 +32,7 @@ int _IO_puts (const char *str) { int result = EOF; - _IO_size_t len = strlen (str); + size_t len = strlen (str); _IO_acquire_lock (_IO_stdout); if ((_IO_vtable_offset (_IO_stdout) != 0 |