projects
/
allwinner_tvout_manipulator.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Casting unsigned long to unsigned int to avoid compiler warnings
[allwinner_tvout_manipulator.git]
/
src
/
main.c
diff --git
a/src/main.c
b/src/main.c
index
32a5ae6
..
136fd75
100644
(file)
--- a/
src/main.c
+++ b/
src/main.c
@@
-8,6
+8,6
@@
int main()
readmem("0x01E00130", 'w', readfrommemory);
- printf("Value: 0x%X", readfrommemory);
+ printf("Value: 0x%X",
(unsigned int)
readfrommemory);
return 0;
}