diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-22 15:08:09 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-22 15:08:09 +0200 |
commit | a1e95df622921a6aa1f62d47699e4bc5cc328930 (patch) | |
tree | 906db75daf9a528ca156daebd0cf3fa0076bdee1 /src/lib/eiotas_particle.c | |
parent | 9332d1fd62492d8dd843a571693eeec75d8d3632 (diff) | |
download | edoors-a1e95df622921a6aa1f62d47699e4bc5cc328930.zip edoors-a1e95df622921a6aa1f62d47699e4bc5cc328930.tar.gz |
DBG usage: cast pointers to unsigned int
Diffstat (limited to 'src/lib/eiotas_particle.c')
-rw-r--r-- | src/lib/eiotas_particle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eiotas_particle.c b/src/lib/eiotas_particle.c index 0084948..769321e 100644 --- a/src/lib/eiotas_particle.c +++ b/src/lib/eiotas_particle.c @@ -28,7 +28,7 @@ Eiotas_Particle* eiotas_particle_alloc() void eiotas_particle_free(Eiotas_Particle *particle) { - DBG("Particle free 0x%X",particle); + DBG("Particle free 0x%X",(unsigned int)particle); free(particle); } |