summaryrefslogtreecommitdiff
path: root/zen/osx_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/osx_string.h')
-rw-r--r--zen/osx_string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/osx_string.h b/zen/osx_string.h
index a5c0849e..ce8b1062 100644
--- a/zen/osx_string.h
+++ b/zen/osx_string.h
@@ -35,7 +35,7 @@ Zstring cfStringToZstring(const CFStringRef& cfStr)
{
if (cfStr)
{
- //perf: try to get away cheap:
+ //perf: try to get away cheap:
if (const char* utf8Str = ::CFStringGetCStringPtr(cfStr, kCFStringEncodingUTF8))
return utf8Str;
bgstack15