diff options
Diffstat (limited to 'src/ccapi/common/win/win-utils.c')
-rw-r--r-- | src/ccapi/common/win/win-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ccapi/common/win/win-utils.c b/src/ccapi/common/win/win-utils.c index f60ee3b8f..3795ca544 100644 --- a/src/ccapi/common/win/win-utils.c +++ b/src/ccapi/common/win/win-utils.c @@ -52,18 +52,18 @@ char* clientEndpoint(const char* UUID) { strncat(_clientEndpoint, UUID, UUID_SIZE); // cci_debug_printf("%s returning %s", __FUNCTION__, _clientEndpoint); return _clientEndpoint; - } + } char* serverEndpoint(const char* user) { char* _serverEndpoint = (char*)malloc(strlen(user) + strlen(serverPrefix) + 2); strcpy(_serverEndpoint, serverPrefix); strncat(_serverEndpoint, user, UUID_SIZE); return _serverEndpoint; - } + } char* timestamp() { SYSTEMTIME _stime; GetSystemTime(&_stime); GetTimeFormat(LOCALE_SYSTEM_DEFAULT, 0, &_stime, "HH:mm:ss", _ts, sizeof(_ts)-1); return _ts; - }
\ No newline at end of file + } |