diff options
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | src/libs/libgroff/relocate.cpp | 2 |
2 files changed, 15 insertions, 1 deletions
@@ -1,3 +1,17 @@ +2010-12-18 Werner LEMBERG <wl@gnu.org> + + Remove compiler warning. + + * src/libs/libgroff/relocate.cpp (msw2posixpath): Remove redundant + dereferencing. + +2010-12-16 Daiki Ueno <ueno@unixuser.org> + + Don't change srcdir if building in a separate builddir. + + * Makefile.in ($GNULIBDIRS): Copy configuring stuff of gnulib if + necessary. + 2010-12-15 Werner LEMBERG <wl@gnu.org> Fix compilation problem. 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; } |