user.exe: Remove dead assignment (clang).
This commit is contained in:
parent
8cd5f12e6b
commit
f12e6a11d8
|
@ -2506,7 +2506,6 @@ INT16 WINAPI wvsprintf16( LPSTR buffer, LPCSTR spec, VA_LIST16 args )
|
||||||
/* wsprintf16 ignores null characters */
|
/* wsprintf16 ignores null characters */
|
||||||
if (*p != '\0') p++;
|
if (*p != '\0') p++;
|
||||||
else if (format.width > 1) *p++ = ' ';
|
else if (format.width > 1) *p++ = ' ';
|
||||||
else len = 0;
|
|
||||||
break;
|
break;
|
||||||
case WPR_STRING:
|
case WPR_STRING:
|
||||||
if (len) memcpy( p, lpcstr_view, len );
|
if (len) memcpy( p, lpcstr_view, len );
|
||||||
|
|
Loading…
Reference in New Issue