hotspot/src/share/vm/ci/ciReplay.cpp
changeset 15228 e92acc84ade3
parent 14588 8ec26d2d9339
child 15483 113ca9e9c1bb
--- a/hotspot/src/share/vm/ci/ciReplay.cpp	Wed Jan 16 16:30:04 2013 +0100
+++ b/hotspot/src/share/vm/ci/ciReplay.cpp	Thu Jan 17 10:25:16 2013 -0500
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -645,7 +645,7 @@
         java_mirror->bool_field_put(fd.offset(), value);
       } else if (strcmp(field_signature, "J") == 0) {
         jlong value;
-        if (sscanf(string_value, INT64_FORMAT, &value) != 1) {
+        if (sscanf(string_value, JLONG_FORMAT, &value) != 1) {
           fprintf(stderr, "Error parsing long: %s\n", string_value);
           return;
         }