Commit 46289779 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wmic: Don't write an extra newline at the end.

parent a7f0dc07
......@@ -177,7 +177,6 @@ static int query_prop( const WCHAR *class, const WCHAR *propname )
static const WCHAR select_allW[] = {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',0};
static const WCHAR cimv2W[] = {'R','O','O','T','\\','C','I','M','V','2',0};
static const WCHAR wqlW[] = {'W','Q','L',0};
static const WCHAR newlineW[] = {'\r','\n',0};
HRESULT hr;
IWbemLocator *locator = NULL;
IWbemServices *services = NULL;
......@@ -238,7 +237,6 @@ static int query_prop( const WCHAR *class, const WCHAR *propname )
}
IWbemClassObject_Release( obj );
}
output_string( GetStdHandle(STD_OUTPUT_HANDLE), newlineW );
ret = 0;
done:
......
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