kernel: use uint64 instead of int64 to avoid narrowing conversion warnings.

* gdb_register is used only in arch_debug.cpp
This commit is contained in:
Jérôme Duval 2013-04-29 21:20:35 +02:00
parent 295cdbee6b
commit 3756e0ac38

View File

@ -1252,7 +1252,7 @@ arch_get_debug_variable(const char* variableName, uint64* value)
struct gdb_register {
int32 type;
int64 value;
uint64 value;
};