mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
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:
parent
7c3015dc01
commit
874e5c5711
2 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue