summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/libtest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/libtest.cxx b/smoketest/libtest.cxx
index a7f72e4d158d..6a8554eea66e 100644
--- a/smoketest/libtest.cxx
+++ b/smoketest/libtest.cxx
@@ -38,14 +38,14 @@
#else
#include <sys/time.h>
#include <sal/types.h>
- long getTimeMS()
+ static long getTimeMS()
{
struct timeval t;
gettimeofday(&t, nullptr);
return t.tv_sec*1000 + t.tv_usec/1000;
}
- bool IsAbsolutePath(char const *pPath)
+ static bool IsAbsolutePath(char const *pPath)
{
if (pPath[0] != '/')
{