From c28a5f2b7fb7c91f5ef120bfa6f244075cf95f9f Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Wed, 11 May 2005 10:58:51 +0000 Subject: [PATCH] Bugfix (remove semicolon) by Tim Tsahayev --- goldlib/gall/gfilutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goldlib/gall/gfilutil.h b/goldlib/gall/gfilutil.h index 2e0c040..7c4be15 100644 --- a/goldlib/gall/gfilutil.h +++ b/goldlib/gall/gfilutil.h @@ -191,7 +191,7 @@ int strschg_environ(char* s); int strschg_environ(std::string& s); char* MapPath(char* map, bool reverse = false); -inline char* ReMapPath(char* map) { return MapPath(map, true); }; +inline char* ReMapPath(char* map) { return MapPath(map, true); } inline long lseekset(int fh, long offset) { return lseek(fh, offset, SEEK_SET); } inline long lseekset(int fh, long record, long recordsize) { return lseek(fh, record*recordsize, SEEK_SET); }