diff options
author | Remi Collet <remi@remirepo.net> | 2020-03-19 08:08:46 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-03-19 08:08:46 +0100 |
commit | 41df13a785e3304261ecde0a4b73b6af3508d59d (patch) | |
tree | 4614dee724c145267540e71e54fd710269b53db2 /53.patch | |
parent | 6cfe90ed9b843a5a272f743b612ad384d086582f (diff) |
update to 0.2.24
drop patch merged upstream
Diffstat (limited to '53.patch')
-rw-r--r-- | 53.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/53.patch b/53.patch deleted file mode 100644 index 4196663..0000000 --- a/53.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 045156077073514f5838c0f6c813f5a5b5cfcc1b Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Mon, 16 Sep 2019 10:44:33 +0200 -Subject: [PATCH] fix format not a string literal and no format arguments - ---- - lib/xlsxio_write.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/xlsxio_write.c b/lib/xlsxio_write.c -index 0cc0c5d..84dc493 100644 ---- a/lib/xlsxio_write.c -+++ b/lib/xlsxio_write.c -@@ -858,7 +858,7 @@ void write_cell_data (xlsxiowriter handle, const char* rowattr, const char* pref - if (data)
- fprintf(handle->pipe_write, "%s", data);
- if (suffix)
-- fprintf(handle->pipe_write, suffix);
-+ fprintf(handle->pipe_write, "%s", suffix);
- } else {
- //add cell data to buffer
- if (prefix)
|