Module: wine Branch: master Commit: 699df04e85dfd7f5c8459bbb0aa6b642f896c697 URL: http://source.winehq.org/git/wine.git/?a=commit;h=699df04e85dfd7f5c8459bbb0a...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Jun 27 22:48:29 2007 +0200
winefile: Do not use wide character constants.
---
programs/winefile/splitpath.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/programs/winefile/splitpath.c b/programs/winefile/splitpath.c index 542379a..42286ec 100644 --- a/programs/winefile/splitpath.c +++ b/programs/winefile/splitpath.c @@ -33,18 +33,18 @@ void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* if (drv) { *drv++ = *path++; *drv++ = *path++; - *drv = L'\0'; + *drv = '\0'; } } else if (drv) - *drv = L'\0'; + *drv = '\0';
/* search for end of string or stream separator */ - for(end=path; *end && *end!=L':'; ) + for(end=path; *end && *end!=':'; ) end++;
/* search for begin of file extension */ - for(p=end; p>path && *--p!=L'\' && *p!=L'/'; ) - if (*p == L'.') { + for(p=end; p>path && *--p!='\' && *p!='/'; ) + if (*p == '.') { end = p; break; } @@ -64,14 +64,14 @@ void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* for(s=p; s<end; ) *name++ = *s++;
- *name = L'\0'; + *name = '\0'; }
if (dir) { for(s=path; s<p; ) *dir++ = *s++;
- *dir = L'\0'; + *dir = '\0'; } }