diff options
| author | Kees Cook <kees@outflux.net> | 2007-03-20 17:16:36 +0000 |
|---|---|---|
| committer | keescook <keescook@users.sourceforge.net> | 2007-03-20 17:16:36 +0000 |
| commit | 4687a1c9ffe0d1d3f6ea01f360faa542a5b6491c (patch) | |
| tree | 734a4d35a4e7b90593ae86a6c9006e58ce23d7d1 /src/debug/logger.cpp | |
| parent | patch by cilix42 for bug 1671665 (diff) | |
| download | inkscape-4687a1c9ffe0d1d3f6ea01f360faa542a5b6491c.tar.gz inkscape-4687a1c9ffe0d1d3f6ea01f360faa542a5b6491c.zip | |
format string protection/clean up (CVE-2007-1463, CVE-2007-1464)
(bzr r2720)
Diffstat (limited to 'src/debug/logger.cpp')
| -rw-r--r-- | src/debug/logger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/logger.cpp b/src/debug/logger.cpp index fc83e89df..f425edd47 100644 --- a/src/debug/logger.cpp +++ b/src/debug/logger.cpp @@ -116,7 +116,7 @@ static void set_category_mask(bool * const mask, char const *filter) { } } if (!iter->name) { - g_warning("Unknown debugging category %*s", end - start, start); + g_warning("Unknown debugging category %*s", (int)(end - start), start); } } if (*end) { |
