summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-07-17 14:49:17 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-07-17 14:49:17 (GMT)
commit27224b65b5e803c8de1c8730e51bc0f442a29d5f (patch)
tree94c505c69f2941d4db49d2964e7a052c9ed83714 /src/util.cpp
parent55571c2989a42e670d62b4cb2d2bd2882b5ecd60 (diff)
downloadDoxygen-27224b65b5e803c8de1c8730e51bc0f442a29d5f.zip
Doxygen-27224b65b5e803c8de1c8730e51bc0f442a29d5f.tar.gz
Doxygen-27224b65b5e803c8de1c8730e51bc0f442a29d5f.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
}