Eliminate incorrect cast in printf string argument
authorKeith Packard <keithp@keithp.com>
Thu, 30 Apr 2009 00:46:36 +0000 (17:46 -0700)
committerKeith Packard <keithp@keithp.com>
Thu, 30 Apr 2009 00:46:36 +0000 (17:46 -0700)
commit4ae74fffb939d67424efa3e7f433637f1f920ebc
tree927afbd8d0330be3f31e6eb03ea2eea8d278ff77
parent39f2a3c6bd501d12a92bfd38434ce67bb5beb70d
Eliminate incorrect cast in printf string argument

char * is a pointer to a string in the default address space, not a generic pointer
to a string. As such, the compiler (at least 2.9.0) mis-compiles this if the
cast is included.
ao_task.c