Am 17.04.2017 um 10:34 schrieb aotto:
………
This is the isolated test case this shows the BUG

#include "stdio.h"

int
main ( int argc, char **argv ) {
     // code

    int i=3;
    int w=11; // → ??????
    int nArg=4;
    char *rowSep="\n";
    char *azArg[4]  = {NULL,NULL,NULL,"EO EU WE €O $H"};

    fprintf(stdout,"%-*.*s%s",w,w,
              azArg[i] ? azArg[i] : NULL,
                i==nArg-1 ? rowSep : "  ");

     return 0; // Indicates that everything went well.
}


_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to