about summary refs log tree commit diff
path: root/libio/tst-ftell-active-handler.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-12-10 16:03:23 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-12-10 16:03:23 +0000
commit1b8bf3518186cdc4f22037e5f226c34ffa143b89 (patch)
treed00da890063bec64de6f1bb8ce108c82a0cb3713 /libio/tst-ftell-active-handler.c
parentf5f46d51f75083e27fae79cee6cd7707888faba3 (diff)
downloadglibc-1b8bf3518186cdc4f22037e5f226c34ffa143b89.tar.gz
glibc-1b8bf3518186cdc4f22037e5f226c34ffa143b89.tar.xz
glibc-1b8bf3518186cdc4f22037e5f226c34ffa143b89.zip
Fix tst-ftell-active-handler.c warning.
A recent change to libio/tst-ftell-active-handler.c (postdating my
last check for warnings on x86) introduced a format warning from a
long int variable used with a %zu format.  This patch fixes it by
using %ld for the format to match the variable.

Tested for x86.

	* libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
	format for long int variable.
Diffstat (limited to 'libio/tst-ftell-active-handler.c')
-rw-r--r--libio/tst-ftell-active-handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/tst-ftell-active-handler.c b/libio/tst-ftell-active-handler.c
index 6151554ffd..7be75bc45a 100644
--- a/libio/tst-ftell-active-handler.c
+++ b/libio/tst-ftell-active-handler.c
@@ -165,7 +165,7 @@ do_ftruncate_test (const char *filename)
 	     it.  */
 	  if (offset != new_offset)
 	    {
-	      printf ("Incorrect offset.  Expected %zu, but got %ld\n",
+	      printf ("Incorrect offset.  Expected %ld, but got %ld\n",
 		      offset, new_offset);
 
 	      ret |= 1;