ICU-4988 Hide unnecessary messages from Visual Studio,

which interprets the : in filenames to mean something special.

X-SVN-Rev: 20769
This commit is contained in:
George Rhoten 2006-12-12 23:56:21 +00:00
parent 7c3015dc01
commit 874e5c5711
2 changed files with 4 additions and 3 deletions

View file

@ -1,7 +1,7 @@
/*
*******************************************************************************
*
* Copyright (C) 2003-2004, International Business Machines
* Copyright (C) 2003-2006, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
@ -59,7 +59,8 @@ genres32(const char *prog, const char *path) {
}
uprv_strcat(file,"testtable32.txt");
out = fopen(file, "w");
puts(file);
/*puts(file);*/
puts("Generating testtable32.txt");
if(out == NULL) {
fprintf(stderr, "%s: Couldn't create resource test file %s\n",
prog, file);

View file

@ -258,7 +258,7 @@ int main(int argc, char* argv[])
#endif
err = U_ZERO_ERROR;
printFilename = (UBool) (argc > 2 || VERBOSE);
printFilename = (UBool) (VERBOSE);
for (++argv; --argc; ++argv)
{
arg = getLongPathname(*argv);