diff options
Diffstat (limited to '')
-rw-r--r-- | notemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notemap.c b/notemap.c index c7f116f..35dba0c 100644 --- a/notemap.c +++ b/notemap.c @@ -248,7 +248,7 @@ static void append( int len = 0; bool ws = false; while (EOF != (ch = fgetc(note))) { - if (len == 76 && ch != '\n') { + if (len == 75 && ch != '\n') { fprintf(msg, "=\r\n"); len = 0; } |