Fix build error on 64-bit

Change-Id: I9a308bf6499a74efa8084a2e4df1f029b26f3d6c
diff --git a/modules/audio/audio_hw.c b/modules/audio/audio_hw.c
index de8685d..a1a322f 100644
--- a/modules/audio/audio_hw.c
+++ b/modules/audio/audio_hw.c
@@ -128,19 +128,19 @@
                                    uint32_t *dsp_frames)
 {
     *dsp_frames = 0;
-    ALOGV("out_get_render_position: dsp_frames: %d", (int)dsp_frames);
+    ALOGV("out_get_render_position: dsp_frames: %p", dsp_frames);
     return -EINVAL;
 }
 
 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
 {
-    ALOGV("out_add_audio_effect: %d", (int)effect);
+    ALOGV("out_add_audio_effect: %p", effect);
     return 0;
 }
 
 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
 {
-    ALOGV("out_remove_audio_effect: %d", (int)effect);
+    ALOGV("out_remove_audio_effect: %p", effect);
     return 0;
 }