summaryrefslogtreecommitdiff
path: root/Clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'Clock.c')
-rw-r--r--Clock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Clock.c b/Clock.c
index 5e3d9d1..b734b39 100644
--- a/Clock.c
+++ b/Clock.c
@@ -599,15 +599,15 @@ Initialize (Widget request, Widget new, ArgList args, Cardinal *num_args)
}
/*
- * initialize time format from CFTIME if set, otherwize
- * default to "%C". This emulates ascftime, but we use
+ * initialize time format from CFTIME if set, otherwise
+ * default to "%c". This emulates ascftime, but we use
* strftime so we can limit the string buffer size to
* avoid possible buffer overflow.
*/
if ((w->clock.strftime == NULL) || (w->clock.strftime[0] == 0)) {
w->clock.strftime = getenv("CFTIME");
if (w->clock.strftime == NULL) {
- w->clock.strftime = "%C";
+ w->clock.strftime = "%c";
}
}
}