Changes in kernel/generic/src/console/cmd.c [b2fa1204:feeac0d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/cmd.c
rb2fa1204 rfeeac0d 45 45 #include <console/kconsole.h> 46 46 #include <print.h> 47 #include <log.h>48 47 #include <panic.h> 49 48 #include <typedefs.h> … … 640 639 for (i = 0; basic_commands[i]; i++) { 641 640 if (!cmd_register(basic_commands[i])) { 642 log(LF_OTHER, LVL_ERROR, 643 "Cannot register command %s", 641 printf("Cannot register command %s\n", 644 642 basic_commands[i]->name); 645 643 } … … 667 665 unsigned int _len = (unsigned int) len; 668 666 if ((_len != len) || (((int) _len) < 0)) { 669 log(LF_OTHER, LVL_ERROR, "Command length overflow");667 printf("Command length overflow\n"); 670 668 return 1; 671 669 }
Note:
See TracChangeset
for help on using the changeset viewer.