diff options
| author | Clement Sibille <clements+git@lisible.xyz> | 2024-03-05 19:10:52 +0900 | 
|---|---|---|
| committer | Clement Sibille <clements+git@lisible.xyz> | 2024-03-05 19:10:52 +0900 | 
| commit | 4b7516a0ab8139ef7f13f96ea3f2e1725b2a35c1 (patch) | |
| tree | 0e657612c74c4aed499ebc4b0293138149a73b88 | |
| parent | 77610f3ceda7ee5ea1e5d99152c133f9d31fa412 (diff) | |
Add line-breaks to logs in bin
| -rw-r--r-- | lisiblepng-bin/src/main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lisiblepng-bin/src/main.c b/lisiblepng-bin/src/main.c index d7f85ca..73aa972 100644 --- a/lisiblepng-bin/src/main.c +++ b/lisiblepng-bin/src/main.c @@ -3,8 +3,8 @@  #include <stdio.h>  #include <string.h> -#define LOG0(msg) fprintf(stderr, msg) -#define LOGN(fmt, ...) fprintf(stderr, fmt, __VA_ARGS__) +#define LOG0(msg) fprintf(stderr, msg "\n") +#define LOGN(fmt, ...) fprintf(stderr, fmt "\n", __VA_ARGS__)  int main(int argc, char **argv) {    if (argc != 2) {  | 
