diff options
| author | Peter Moulder <peter.moulder@monash.edu> | 2007-10-11 13:46:40 +0000 |
|---|---|---|
| committer | pjrm <pjrm@users.sourceforge.net> | 2007-10-11 13:46:40 +0000 |
| commit | c3899dac849638c01931b598ff7e4a4c4a484d93 (patch) | |
| tree | 35e8e08fcf85ab1db7750a79509f900eb9baee2e /src/dom/io/domstream.cpp | |
| parent | Fix g_return_if_fail failure: It can validly happen that fit_canvas_to_select... (diff) | |
| download | inkscape-c3899dac849638c01931b598ff7e4a4c4a484d93.tar.gz inkscape-c3899dac849638c01931b598ff7e4a4c4a484d93.zip | |
Avoid string literal char* warnings on g++-4.2: change some functions to take char const* rather than char*.
(bzr r3874)
Diffstat (limited to 'src/dom/io/domstream.cpp')
| -rw-r--r-- | src/dom/io/domstream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dom/io/domstream.cpp b/src/dom/io/domstream.cpp index c6234d462..c35a3d148 100644 --- a/src/dom/io/domstream.cpp +++ b/src/dom/io/domstream.cpp @@ -896,7 +896,7 @@ int BasicWriter::put(XMLCh ch) * Provide printf()-like formatting */ /* -Writer &BasicWriter::printf(char *fmt, ...) +Writer &BasicWriter::printf(char const *fmt, ...) { va_list args; va_start(args, fmt); |
