Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4376 → Rev 4377

/branches/tracing/uspace/app/debug/main.c
178,7 → 178,7
int idx_found;
int num_found;
 
len = strlen(cmd_argv[0]);
len = str_length(cmd_argv[0]);
cmp_len = 1;
 
/* Silence warnings */
190,7 → 190,7
num_found = 0;
i = 0;
while (cmd_table[i].name != NULL) {
if (strncmp(cmd_table[i].name, cmd_argv[0], cmp_len) == 0) {
if (str_lcmp(cmd_table[i].name, cmd_argv[0], cmp_len) == 0) {
idx_found = i;
++num_found;
}