diff options
| author | Peter Moulder <peter.moulder@monash.edu> | 2008-04-13 11:28:59 +0000 |
|---|---|---|
| committer | pjrm <pjrm@users.sourceforge.net> | 2008-04-13 11:28:59 +0000 |
| commit | ff7e02ab10911493c1252e9b5475168b3ab3105e (patch) | |
| tree | 22540e7e5476c9b02413eee585d6ae3ddec389de /src/dom/xmlreader.cpp | |
| parent | Rewrote code to get rid of 32/64 bit problems, and to make is more stream-lik... (diff) | |
| download | inkscape-ff7e02ab10911493c1252e9b5475168b3ab3105e.tar.gz inkscape-ff7e02ab10911493c1252e9b5475168b3ab3105e.zip | |
address some char* string literal warnings.
(bzr r5414)
Diffstat (limited to 'src/dom/xmlreader.cpp')
| -rw-r--r-- | src/dom/xmlreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dom/xmlreader.cpp b/src/dom/xmlreader.cpp index c6eae8ba3..825851479 100644 --- a/src/dom/xmlreader.cpp +++ b/src/dom/xmlreader.cpp @@ -156,7 +156,7 @@ int XmlReader::peek(int p) * Test if the given substring exists at the given position * in parsebuf. Use peek() in case of out-of-bounds */ -bool XmlReader::match(int pos, char *str) +bool XmlReader::match(int pos, char const *str) { while (*str) { |
