And again

svn path=/trunk/netsurf/; revision=7607
This commit is contained in:
John Mark Bell 2009-05-28 16:05:17 +00:00
parent e9e3649648
commit abc3603feb

View File

@ -976,6 +976,10 @@ bool selection_save_text(struct selection *s, const char *path)
out = fopen(path, "w");
if (out) {
int res = fputs(result, out);
if (res < 0) {
LOG(("Warning: writing data failed"));
}
res = fputs("\n", out);
fclose(out);
free(result);