Skip to content

Commit

Permalink
Fix cast style.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobsayshilol committed Jun 23, 2015
1 parent 872ee5e commit 91080c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radeontop.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ unsigned int readgrbm() {
get_drm_value(drm_fd, RADEON_INFO_READ_REG, &reg);
return reg;
} else {
const void *ptr = (const char*)area + 0x10;
const void *ptr = (const char *) area + 0x10;
const unsigned int *inta = ptr;
return *inta;
}
Expand Down

0 comments on commit 91080c7

Please sign in to comment.