From 09c9327657f21eb42e28ba195fde9316fdcc78e5 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 15 Feb 2006 04:26:20 +0000 Subject: dont use %m glibcism --- test/string/stratcliff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/string') diff --git a/test/string/stratcliff.c b/test/string/stratcliff.c index 6377c6ed7..41e774681 100644 --- a/test/string/stratcliff.c +++ b/test/string/stratcliff.c @@ -52,7 +52,7 @@ main (int argc, char *argv[]) puts ("No test, mmap not available."); else { - printf ("mmap failed: %m"); + printf ("mmap failed: %s", strerror(errno)); result = 1; } } -- cgit v1.2.3