return status instead of returning directly

This commit is contained in:
Bernhard Miklautz 2014-07-28 18:49:18 +02:00
parent 32bb18152a
commit ff26a90489

View File

@ -169,7 +169,7 @@ int freerdp_client_settings_parse_command_line(rdpSettings* settings, int argc,
/* This function will call logic that is applicable to the settings
* from command line parsing AND the rdp file parsing */
if(!freerdp_client_settings_post_process(settings))
return -1;
status = -1;
return status;
}