1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

winspool: Improve the grammar of a comment in get_servername_from_name.

This commit is contained in:
Alex Henrie 2022-12-12 00:02:26 -07:00 committed by Alexandre Julliard
parent be57ebe015
commit a8e2aa6c4b

View file

@ -887,7 +887,7 @@ static LPWSTR get_servername_from_name(LPCWSTR name)
if (name == NULL) return NULL;
if ((name[0] != '\\') || (name[1] != '\\')) return NULL;
server = wcsdup(&name[2]); /* skip over both backslash */
server = wcsdup(&name[2]); /* skip over both backslashes */
if (server == NULL) return NULL;
/* strip '\' and the printername */