Changes in kernel/generic/src/console/cmd.c [3266412:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/cmd.c
r3266412 r63e27ef 41 41 */ 42 42 43 #include <assert.h> 43 44 #include <console/cmd.h> 44 45 #include <console/console.h> … … 54 55 #include <str.h> 55 56 #include <macros.h> 56 #include <debug.h>57 57 #include <cpu.h> 58 58 #include <mm/tlb.h> … … 917 917 int cmd_uptime(cmd_arg_t *argv) 918 918 { 919 ASSERT(uptime);919 assert(uptime); 920 920 921 921 /* This doesn't have to be very accurate */
Note:
See TracChangeset
for help on using the changeset viewer.