Commit f12e6a11 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

user.exe: Remove dead assignment (clang).

parent 8cd5f12e
...@@ -2506,7 +2506,6 @@ INT16 WINAPI wvsprintf16( LPSTR buffer, LPCSTR spec, VA_LIST16 args ) ...@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment