Skip to content

Commit b40e44a

Browse files
Merge pull request #25 from dani007200964/strcmp-fix
Update Commander-API.cpp
2 parents 8aacc91 + a8815b9 commit b40e44a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commander-API.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ void Commander::optimize_api_tree(){
221221
API_t *prev;
222222

223223
// It will store string comparison result
224-
int32_t comp_res;
224+
int comp_res;
225225

226226
// recursive optimizer need to initialize elementCounter to 0
227227
elementCounter = 0;
@@ -613,7 +613,7 @@ Commander::API_t* Commander::operator [] ( char* name ){
613613
API_t *prev;
614614

615615
// It will store string compersation result
616-
int8_t comp_res;
616+
int comp_res;
617617

618618
prev = &API_tree[ 0 ];
619619

0 commit comments

Comments
 (0)