Fix "unhandled case in switch" warning

This commit is contained in:
François Revol 2014-07-27 01:25:39 +02:00
parent 8b95dd25f9
commit 2692aea576
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ uname(struct utsname *info)
case B_CPU_x86_64:
platform = "x86_64";
break;
default: //TODO:add others
platform = "unknown";
break;
}
}