diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-08 17:18:59 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-07-08 17:18:59 +0000 |
| commit | 851b0e3234e696ce538414d2b074da023a9e9fc3 (patch) | |
| tree | 6536db9ddca18f29a1bdc188272da52756146ad0 /apps/codecs | |
| parent | 0e21789e1faa413f2ea6ab80029f0967f14d1c61 (diff) | |
| download | rockbox-851b0e3234e696ce538414d2b074da023a9e9fc3.zip rockbox-851b0e3234e696ce538414d2b074da023a9e9fc3.tar.gz rockbox-851b0e3234e696ce538414d2b074da023a9e9fc3.tar.bz2 rockbox-851b0e3234e696ce538414d2b074da023a9e9fc3.tar.xz | |
Try at fixing 'cast to/from pointer to/from integer of different size' warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21719 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/cook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/cook.c b/apps/codecs/cook.c index cd624ab..451fe34 100644 --- a/apps/codecs/cook.c +++ b/apps/codecs/cook.c @@ -34,7 +34,7 @@ COOKContext q; static void init_rm(RMContext *rmctx) { - memcpy(rmctx, (void*)(( (int)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext)); + memcpy(rmctx, (void*)(( (intptr_t)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext)); } /* this is the codec entry point */ |