aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-02-02 12:59:36 +0100
committerJoel Bodenmann <joel@unormal.org>2014-02-02 12:59:36 +0100
commit6515373b2a63a24b77ff20a26e9b18468f29a6f9 (patch)
tree3defb6803ece269740bef971244ebee5a44173ed /src/gos
parentbf8ceb278fc285eff477294e1ae2cf539ada747b (diff)
downloaduGFX-6515373b2a63a24b77ff20a26e9b18468f29a6f9.tar.gz
uGFX-6515373b2a63a24b77ff20a26e9b18468f29a6f9.tar.bz2
uGFX-6515373b2a63a24b77ff20a26e9b18468f29a6f9.zip
removing casts of gfxAlloc() return value as that is the whole idea behind having a void pointer
Diffstat (limited to 'src/gos')
-rw-r--r--src/gos/raw32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gos/raw32.c b/src/gos/raw32.c
index 5a65ea86..5e11064c 100644
--- a/src/gos/raw32.c
+++ b/src/gos/raw32.c
@@ -542,7 +542,7 @@ static void _gosThreadsInit(void) {
char * framebase;
// Allocate a buffer to store our test data
- pframeinfo = (saveloc *)gfxAlloc(sizeof(saveloc)*2);
+ pframeinfo = gfxAlloc(sizeof(saveloc)*2);
// Get details of the stack frame from within a function
get_stack_state_in_fn();