diff options
Diffstat (limited to 'plugins/CSList/strpos.h')
-rw-r--r-- | plugins/CSList/strpos.h | 2 |
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
{
|