diff options
| author | Louis Burda <quent.burda@gmail.com> | 2021-12-16 13:48:13 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2021-12-20 15:31:29 +0100 |
| commit | 15a8fe2cf2b16af8739a7ec2b64b5c5f184161b8 (patch) | |
| tree | 62a7b404ac2fda90d0df628922f182afacd0d510 /util.c | |
| parent | 1bd07952245e3fc8ed95af0c1eff45938098b40b (diff) | |
| download | tmus-15a8fe2cf2b16af8739a7ec2b64b5c5f184161b8.tar.gz tmus-15a8fe2cf2b16af8739a7ec2b64b5c5f184161b8.zip | |
Implemented list navigation and other fixes
Diffstat (limited to 'util.c')
| -rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ assert(int cond, const char *file, int line, const char *condstr) { if (cond) return; - fprintf(stderr, "Assertion failed %s:%i (%s)", file, line, condstr); + fprintf(stderr, "Assertion failed %s:%i (%s)\n", file, line, condstr); exit(1); } |
