mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
Fixed unnecessary cast in headers
This commit is contained in:
@@ -56,12 +56,12 @@ int TestTypes(int argc, char* argv[])
|
||||
WINPR_UNUSED(argc);
|
||||
WINPR_UNUSED(argv);
|
||||
|
||||
if (S_OK != (HRESULT)0L)
|
||||
if (S_OK != 0L)
|
||||
{
|
||||
printf("Error: S_OK should be 0\n");
|
||||
goto err;
|
||||
}
|
||||
if (S_FALSE != (HRESULT)1L)
|
||||
if (S_FALSE != 1L)
|
||||
{
|
||||
printf("Error: S_FALSE should be 1\n");
|
||||
goto err;
|
||||
|
||||
Reference in New Issue
Block a user