src/share/vm/opto/idealGraphPrinter.cpp

changeset 4465
203f64878aab
parent 4037
da91efe96a93
child 4949
8373c19be854
     1.1 --- a/src/share/vm/opto/idealGraphPrinter.cpp	Wed Jan 16 16:30:04 2013 +0100
     1.2 +++ b/src/share/vm/opto/idealGraphPrinter.cpp	Thu Jan 17 10:25:16 2013 -0500
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -547,7 +547,7 @@
    1.11  
    1.12          // max. 2 chars allowed
    1.13          if (value >= -9 && value <= 99) {
    1.14 -          sprintf(buffer, INT64_FORMAT, value);
    1.15 +          sprintf(buffer, JLONG_FORMAT, value);
    1.16            print_prop(short_name, buffer);
    1.17          } else {
    1.18            print_prop(short_name, "L");

mercurial