summaryrefslogtreecommitdiff
path: root/pr/tests/formattm.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/formattm.c')
-rw-r--r--pr/tests/formattm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pr/tests/formattm.c b/pr/tests/formattm.c
index 88b9fdf2..63355b28 100644
--- a/pr/tests/formattm.c
+++ b/pr/tests/formattm.c
@@ -20,7 +20,7 @@ int main(int argc, char **argv)
PR_ExplodeTime(now, PR_LocalTimeParameters, &tod);
if (PR_FormatTime(buffer, sizeof(buffer),
- "%a %b %d %H:%M:%S %Z %Y", &tod) != 0) {
+ "%a %b %d %H:%M:%S %Z %Y", &tod) != 0) {
printf("%s\n", buffer);
} else {
fprintf(stderr, "PR_FormatTime(buffer) failed\n");
@@ -29,21 +29,21 @@ int main(int argc, char **argv)
small_buffer[0] = '?';
if (PR_FormatTime(small_buffer, sizeof(small_buffer),
- "%a %b %d %H:%M:%S %Z %Y", &tod) == 0) {
+ "%a %b %d %H:%M:%S %Z %Y", &tod) == 0) {
if (small_buffer[0] != '\0') {
fprintf(stderr, "PR_FormatTime(small_buffer) did not output "
- "an empty string on failure\n");
+ "an empty string on failure\n");
return 1;
}
printf("%s\n", small_buffer);
} else {
fprintf(stderr, "PR_FormatTime(small_buffer) succeeded "
- "unexpectedly\n");
+ "unexpectedly\n");
return 1;
}
(void)PR_FormatTimeUSEnglish(buffer, sizeof(buffer),
- "%a %b %d %H:%M:%S %Z %Y", &tod);
+ "%a %b %d %H:%M:%S %Z %Y", &tod);
printf("%s\n", buffer);
return 0;