diff options
Diffstat (limited to 'common/rfb/util.cxx')
-rw-r--r-- | common/rfb/util.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/util.cxx b/common/rfb/util.cxx index 22918cf9..c5c00bbd 100644 --- a/common/rfb/util.cxx +++ b/common/rfb/util.cxx @@ -32,7 +32,7 @@ namespace rfb { - std::string strFormat(const char *fmt, ...) + std::string format(const char *fmt, ...) { va_list ap; int len; @@ -59,8 +59,8 @@ namespace rfb { return out; } - std::vector<std::string> strSplit(const char* src, - const char delimiter) + std::vector<std::string> split(const char* src, + const char delimiter) { std::vector<std::string> out; const char *start, *stop; |