summaryrefslogtreecommitdiff
path: root/plugins/CSList/strpos.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CSList/strpos.h')
-rw-r--r--plugins/CSList/strpos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CSList/strpos.h b/plugins/CSList/strpos.h
index 14ea88a8f6..aaffa3988b 100644
--- a/plugins/CSList/strpos.h
+++ b/plugins/CSList/strpos.h
@@ -58,7 +58,7 @@ int strpos( STRING haystack, STRING needle )
pDest = (STRING) wcsstr( haystack, needle );
#endif /* UNICODE */
- if( pDest )
+ if ( pDest )
position = pDest - haystack;
else
{