summaryrefslogtreecommitdiffstats
path: root/tests/introspective-system.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-03-04 00:40:09 -0500
committerTavian Barnes <tavianator@gmail.com>2010-03-04 00:40:09 -0500
commitc015c3966d98a8b120a0e3ebb900b0755eeae750 (patch)
tree08f2f1eeb59a2989597fe9a973eabbacfcf65e83 /tests/introspective-system.c
parentb1201e542c68eab6247de66a3460914b625d9302 (diff)
downloadlibsandglass-c015c3966d98a8b120a0e3ebb900b0755eeae750.tar.xz
Fix perror() strings in tests.
Diffstat (limited to 'tests/introspective-system.c')
-rw-r--r--tests/introspective-system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/introspective-system.c b/tests/introspective-system.c
index 5dee23a..8ed6441 100644
--- a/tests/introspective-system.c
+++ b/tests/introspective-system.c
@@ -32,7 +32,7 @@ main()
struct timespec tosleep = { .tv_sec = 0, .tv_nsec = 111111111L };
if (sandglass_init_introspective(&sandglass, SANDGLASS_SYSTEM) != 0) {
- perror("sandglass_create()");
+ perror("sandglass_init_introspective()");
return EXIT_FAILURE;
}