Browse Source

datetime: Add error message

master
Aaron Marcher 6 years ago
parent
commit
932f65c373
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      components/datetime.c

+ 1
- 0
components/datetime.c View File

@@ -10,6 +10,7 @@ datetime(const char *fmt)

t = time(NULL);
if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) {
fprintf(stderr, "strftime: Result string exceeds buffer size\n");
return NULL;
}



Loading…
Cancel
Save