X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=blobdiff_plain;f=i3-dump-log%2Fmain.c;h=852a5cf7b2fc944e50272fcd2c1a9b676c2070f6;hp=4a11d218298f7a2c0515f940b9586a55d3f0250c;hb=5a567057abbd9b6acb8c440f9d81120e8bd6e5c6;hpb=1a6bddad55b87f6d1e23ab05c1abc4da1e843a21 diff --git a/i3-dump-log/main.c b/i3-dump-log/main.c index 4a11d218..852a5cf7 100644 --- a/i3-dump-log/main.c +++ b/i3-dump-log/main.c @@ -42,14 +42,19 @@ static int check_for_wrap(void) { /* The log wrapped. Print the remaining content and reset walk to the top * of the log. */ wrap_count = header->wrap_count; - write(STDOUT_FILENO, walk, ((logbuffer + header->offset_last_wrap) - walk)); + const int len = (logbuffer + header->offset_last_wrap) - walk; + if (write(STDOUT_FILENO, walk, len) != len) + err(EXIT_FAILURE, "write()"); walk = logbuffer + sizeof(i3_shmlog_header); return 1; } static void print_till_end(void) { check_for_wrap(); - int n = write(STDOUT_FILENO, walk, ((logbuffer + header->offset_next_write) - walk)); + const int len = (logbuffer + header->offset_next_write) - walk; + const int n = write(STDOUT_FILENO, walk, len); + if (len != n) + err(EXIT_FAILURE, "write()"); if (n > 0) { walk += n; }