aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-06-04 00:50:45 +0200
committerMattias Andrée <maandree@operamail.com>2014-06-04 00:50:45 +0200
commit05fd8d64a140cde16c44a93c4c3b7075e5e44037 (patch)
tree5b354589e268713f14487e09f58fb063cd1dedfa
parentfix which ramps are getting calloc (diff)
downloadlibgamma-05fd8d64a140cde16c44a93c4c3b7075e5e44037.tar.gz
libgamma-05fd8d64a140cde16c44a93c4c3b7075e5e44037.tar.bz2
libgamma-05fd8d64a140cde16c44a93c4c3b7075e5e44037.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--src/test/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test.c b/src/test/test.c
index 815c93b..49c5f8b 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -155,9 +155,9 @@ static void error_test(void)
printf("\n");
printf("Testing libgamma_perror:\n");
libgamma_perror(" Expecting LIBGAMMA_STATE_UNKNOWN", LIBGAMMA_STATE_UNKNOWN);
- libgamma_perror(" Expecting an description for ENOMEM", ENOMEM);
- libgamma_perror(" Expecting an description for successfulness", 0);
- libgamma_perror(" Expecting an description for ENOMEM", (errno = ENOMEM, LIBGAMMA_ERRNO_SET));
+ libgamma_perror(" Expecting a description for ENOMEM", ENOMEM);
+ libgamma_perror(" Expecting a description for successfulness", 0);
+ libgamma_perror(" Expecting a description for ENOMEM", (errno = ENOMEM, LIBGAMMA_ERRNO_SET));
libgamma_group_gid = 10;
libgamma_group_name = "test";
libgamma_perror(" Expecting 'LIBGAMMA_DEVICE_REQUIRE_GROUP: test (10)'", LIBGAMMA_DEVICE_REQUIRE_GROUP);