Changeset 088cecc in mainline


Ignore:
Timestamp:
2008-03-10T19:24:15Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
07deef5
Parents:
c31d773
Message:

Fix breakage in non-debug amd64 build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/debugger.c

    rc31d773 r088cecc  
    293293int cmd_del_breakpoint(cmd_arg_t *argv)
    294294{
    295         if (argv->intval < 0 || argv->intval > BKPOINTS_MAX) {
     295        unative_t bpno = argv->intval;
     296        if (bpno > BKPOINTS_MAX) {
    296297                printf("Invalid breakpoint number.\n");
    297298                return 0;
Note: See TracChangeset for help on using the changeset viewer.