diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-03-04 00:40:09 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-03-04 00:40:09 -0500 |
commit | c015c3966d98a8b120a0e3ebb900b0755eeae750 (patch) | |
tree | 08f2f1eeb59a2989597fe9a973eabbacfcf65e83 /tests/monotonic-cputime.c | |
parent | b1201e542c68eab6247de66a3460914b625d9302 (diff) | |
download | libsandglass-c015c3966d98a8b120a0e3ebb900b0755eeae750.tar.xz |
Fix perror() strings in tests.
Diffstat (limited to 'tests/monotonic-cputime.c')
-rw-r--r-- | tests/monotonic-cputime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/monotonic-cputime.c b/tests/monotonic-cputime.c index f034df3..3f59a3f 100644 --- a/tests/monotonic-cputime.c +++ b/tests/monotonic-cputime.c @@ -32,7 +32,7 @@ main() struct timespec tosleep = { .tv_sec = 0, .tv_nsec = 111111111L }; if (sandglass_init_monotonic(&sandglass, SANDGLASS_CPUTIME) != 0) { - perror("sandglass_create()"); + perror("sandglass_init_monotonic()"); return EXIT_FAILURE; } |