# HG changeset patch # User Richard Laager # Date 1137310989 0 # Node ID d4db623e3d8c6cdf6d27304675326be3b3eb19c2 # Parent eb39a798ff9aeaecec3f842821b496efb73ffeb6 [gaim-migrate @ 15233] It seems like we should have a newline at the end of HTML logs. It's late and this is untested, but I can't imagine what it would break. (Yeah, yeah, famous last words.) diff -r eb39a798ff9a -r d4db623e3d8c src/log.c --- a/src/log.c Sun Jan 15 05:50:28 2006 +0000 +++ b/src/log.c Sun Jan 15 07:43:09 2006 +0000 @@ -983,7 +983,7 @@ GaimLogCommonLoggerData *data = log->logger_data; if (data) { if(data->file) { - fprintf(data->file, ""); + fprintf(data->file, "\n"); fclose(data->file); } g_free(data->path);