View Single Post
Re: Bugs to be fixed
Old
  (#21)
Josh_Borke
Member
 
Status: Offline
Posts: 152
Join Date: Jun 2004
Default Re: Bugs to be fixed - 08-07-2004

woot, thanks
compiles just fine now

Code:
printf("usage: %0 bspfile [ minx maxx miny maxy]\n",argv[0]);
should be
Code:
printf("usage: %s bspfile minx maxx miny maxy\n",argv[0]);
since you require minx/maxx/miny/maxy to be defined, prevents confusion over the requirement.
and %0 should be %s
HTH
nice work

Last edited by Josh_Borke; 08-07-2004 at 15:28..
  
Reply With Quote