aboutsummaryrefslogtreecommitdiff
path: root/src/calculer.c
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-06-30 17:00:48 +0900
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-06-30 17:00:48 +0900
commitc48f0176412f2c15fbb3cbc6052550959f581da9 (patch)
tree8d637080281f0b50f3a303e5a62ccb44e2201b21 /src/calculer.c
parent46e6de294243e8dc593551bfe8c0e7090d03a159 (diff)
Add support for release compilation modeHEADmaster
Displays are not shared libraries, but object files that are part of the final executable.
Diffstat (limited to 'src/calculer.c')
-rw-r--r--src/calculer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/calculer.c b/src/calculer.c
index 705fb74..6bf8fbb 100644
--- a/src/calculer.c
+++ b/src/calculer.c
@@ -153,7 +153,7 @@ main(int argc, char *argv[])
time_t now = time(NULL);
struct tm *tm = localtime(&now);
size_t bytes_written = strftime(logbuf, sizeof(logbuf), "%F\t", tm);
- assert(bytes_written);
+ assert(bytes_written); /* TODO: better handling */
int opt;
while ((opt = getopt(argc, argv, ":Vhl:m:M:i:")) != -1)