* src/vm/options.c (options_xx): Don't clutter output with warning (print to
authorStefan Ring <stefan@complang.tuwien.ac.at>
Tue, 2 Jun 2009 23:35:48 +0000 (01:35 +0200)
committerStefan Ring <stefan@complang.tuwien.ac.at>
Tue, 2 Jun 2009 23:35:48 +0000 (01:35 +0200)
stderr instead).

src/vm/options.c

index cd38e8a71bce928bf11d3a28e4f15e3ce3fe15e0..861713a62018b4ff02397563cd66be7d5fe9f815 100644 (file)
@@ -872,7 +872,7 @@ void options_xx(JavaVMInitArgs *vm_args)
 #endif
 
                default:
-                       printf("Unknown -XX option: %s\n", name);
+                       fprintf(stderr, "Unknown -XX option: %s\n", name);
                        break;
                }
        }