Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vm_mngr.c #1052

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

qihuanpiaoliu
Copy link

Eliminate compile warnings on MAC.

MAC version = 10.12.6
clang version = Apple LLVM version 9.0.0 (clang-900.0.37)

Eliminate compile warnings on MAC.

MAC version = 10.12.6
clang version =  Apple LLVM version 9.0.0 (clang-900.0.37)
@@ -926,7 +926,7 @@ void hexdump(char* m, unsigned int l)
if (!(i%0x10) && i){
last = i;
printf(" ");
for (j=-0x10;j<0;j++){
for (j=-0x10;(int)j<0;j++){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @qihuanpiaoliu !
Thank you for the fix.
For the last one, maybe we can declare an "int" (signed) k for example, and use it here to avoid the warning instead of casting j as unsigned. What do you thinl of this?

@@ -226,7 +226,7 @@ static uint64_t memory_page_read(vm_mngr_t* vm_mngr, unsigned int my_size, uint6
}
switch(my_size){
case 8:
ret = ret;
/*ret = ret*/;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be removed instead of commented I think?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants