summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-11-22 11:22:35 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2020-11-22 11:22:35 +0100
commit3e2e1589dc50bd944cfd63d58a846921966224af (patch)
tree4e94eda330e805a3603c74dd7e0df06e0c45d471
parenta42fbcc9dd03a6a6c24b494b683b370bd5173335 (diff)
Fix compilation warning,HEADmaster
-rw-r--r--hugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugin.c b/hugin.c
index 021a515..b842b30 100644
--- a/hugin.c
+++ b/hugin.c
@@ -341,7 +341,7 @@ static int hug_output_fd(int fd, const char *msg, int withdate)
if(fd == -1) return 1;
if(withdate) {
- char hdr[32];
+ char hdr[64];
hug_create_header(hdr, sizeof(hdr));
s = write(fd, hdr, strlen(hdr));