ID:355 - Remove declared, but not used variables

Commit removes bunch of declared, but not used, variables.
This commit is contained in:
Zdenek Styblik
2016-03-14 20:19:35 +01:00
parent 2b8974fb22
commit 24ebe2fed9
8 changed files with 16 additions and 47 deletions

View File

@@ -545,7 +545,7 @@ SendTimedI2cRequest (
if( status != TRUE ) {
DWORD error;
error = GetLastError();
return ACCESN_ERROR;
return error;
}
if( respLength == 0 ) {
return ACCESN_ERROR;
@@ -1134,7 +1134,7 @@ SendTimedImbpRequest (
if( status != TRUE ) {
DWORD error;
error = GetLastError();
return ACCESN_ERROR;
return error;
}
if( respLength == 0 ) {
return ACCESN_ERROR;
@@ -1211,7 +1211,7 @@ SendAsyncImbpRequest (
if( status != TRUE ) {
DWORD error;
error = GetLastError();
return ACCESN_ERROR;
return error;
}
if( respLength != 2 ) {
return ACCESN_ERROR;