summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2010-12-18 06:46:05 +0000
committerwl <wl>2010-12-18 06:46:05 +0000
commitdf0c148d4098b18d6855357a775f519914297836 (patch)
tree8b745e1782a436ea5cc0e8120dd650c7bcceb877 /src
parent1741c826642ccd2204b2fece7452c2c0e462474a (diff)
downloadgroff-df0c148d4098b18d6855357a775f519914297836.tar.gz
Remove compiler warning.
* src/libs/libgroff/relocate.cpp (msw2posixpath): Remove redundant dereferencing.
Diffstat (limited to 'src')
-rw-r--r--src/libs/libgroff/relocate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/libgroff/relocate.cpp b/src/libs/libgroff/relocate.cpp
index efe384f7..1fd81eaa 100644
--- a/src/libs/libgroff/relocate.cpp
+++ b/src/libs/libgroff/relocate.cpp
@@ -151,7 +151,7 @@ char *msw2posixpath(char *path)
while (*s) {
if (*s == '\\')
*s = '/';
- *s++;
+ s++;
}
return path;
}