Page 2 of 2

Re:an extended printf function

Posted: Mon Mar 29, 2004 4:58 pm
by proxy
Pype.Clicker, i'm assuming that this page is yours due to the reference to the Clicker32 microkernel...

http://www.run.montefiore.ulg.ac.be/~ma ... g-f00.html

just wanted to inform you of a mistake..

first code example contains this:

Code: Select all

int iarray[]={1,2,3,4};
int* iaptr=&iarray;
you are assigning a int ** (pointer to a integer array..) to an int *

it really should be:

Code: Select all

int iarray[]={1,2,3,4};
int* iaptr=iarray;
otherwise cool stuff :)

proxy