Changeset 48012 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 23, 2013 8:39:37 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88340
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/HGCM.cpp
r47117 r48012 791 791 /* The maximum length of the thread name, allowed by the RT is 15. */ 792 792 char szThreadName[16]; 793 if (!strncmp (pszServiceName, "VBoxShared", 10))793 if (!strncmp (pszServiceName, RT_STR_TUPLE("VBoxShared"))) 794 794 RTStrPrintf (szThreadName, sizeof (szThreadName), "Sh%s", pszServiceName + 10); 795 else if (!strncmp (pszServiceName, "VBox", 4))795 else if (!strncmp (pszServiceName, RT_STR_TUPLE("VBox"))) 796 796 RTStrCopy (szThreadName, sizeof (szThreadName), pszServiceName + 4); 797 797 else
Note:
See TracChangeset
for help on using the changeset viewer.