summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-17 14:49:17 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-17 14:49:17 (GMT)
commit5d301b7175193a7bb7973506df92da065b4acf6e (patch)
tree94c505c69f2941d4db49d2964e7a052c9ed83714 /src/util.cpp
parent8feba3b60badccd732e753fadb089d13799db829 (diff)
downloadDoxygen-5d301b7175193a7bb7973506df92da065b4acf6e.zip
Doxygen-5d301b7175193a7bb7973506df92da065b4acf6e.tar.gz
Doxygen-5d301b7175193a7bb7973506df92da065b4acf6e.tar.bz2
Fixes compile bug on Windows
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index a1e93a8..563c0e6 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -78,7 +78,7 @@ int iSystem(const char *command)
}
}
#else
- system(command);
+ return system(command);
#endif
}