diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-02-15 19:12:35 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-02-15 19:12:35 +0000 |
commit | 6bb10c5e2fa82c104e57c7468335930ba9e47d4f (patch) | |
tree | 60bd49061ad572a9f0cd0955d91e302983ee6939 /source/components/executer/exutils.c | |
parent | a8e5af903d1868804e09dfa39195b9bb1826ace2 (diff) |
Notes
Diffstat (limited to 'source/components/executer/exutils.c')
-rw-r--r-- | source/components/executer/exutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/components/executer/exutils.c b/source/components/executer/exutils.c index f31f2925594a..c8f1b6ef12d7 100644 --- a/source/components/executer/exutils.c +++ b/source/components/executer/exutils.c @@ -391,7 +391,7 @@ AcpiExDigitsNeeded ( if (Value == 0) { - return_VALUE (1); + return_UINT32 (1); } CurrentValue = Value; @@ -405,7 +405,7 @@ AcpiExDigitsNeeded ( NumDigits++; } - return_VALUE (NumDigits); + return_UINT32 (NumDigits); } |