Thomas E. Spanjaard wrote:
Sepherosa Ziehau wrote:On 1/28/07, Thomas E. Spanjaard <[EMAIL PROTECTED]> wrote:C.Turner wrote: > + if ( vkdFileNum < VKD_MAX ) > + vkdFile[vkdFileNum++] = optarg; Why not if (vkdFileNum < VKD_MAX) { vkdFile[vkdFileNum] = optarg; vkdFileNum++; }; ? Because now it appears '16' is a valid number, whereWhy '16'(VKD_MAX) will be a valid number in his patch?if (15 < 16) { vkdFile[(15++ = 16)] = optarg; }
heh, no :)
% cat<<EOF>d.c
main(){int i=0;printf("%d\n", i++);}
EOF
% cc d.c
% ./a.out
0
%
cheers
simon
--
Serve - BSD +++ RENT this banner advert +++ ASCII Ribbon /"\
Work - Mac +++ space for low €€€ NOW!1 +++ Campaign \ /
Party Enjoy Relax | http://dragonflybsd.org Against HTML \
Dude 2c 2 the max ! http://golden-apple.biz Mail + News / \
signature.asc
Description: OpenPGP digital signature
