|
From: James W. W. <ja...@fr...> - 2005-05-18 18:47:59
|
Seth Willits <bm...@pa...> wrote:
>Add the two lines:
>
> printf("Error: %i \n", error);
> printf("kQ3ErrorNone: %i \n", kQ3ErrorNone);
>
>You should get the two warnings:
> warning: int format, different type arg (arg 2)
OK, now I have the code
TQ3Error error = Q3Error_Get(nil);
if (error != kQ3ErrorNone)
{
printf("Error: %i \n", error);
printf("kQ3ErrorNone: %i \n", kQ3ErrorNone);
}
and I get no warnings.
--
James W. Walker, ScriptPerfection Enterprises, Inc.
<http://www.write-brain.com/>
|