src/share/vm/runtime/arguments.cpp

changeset 4465
203f64878aab
parent 4397
561148896559
child 4469
c73c3f2c5b3b
     1.1 --- a/src/share/vm/runtime/arguments.cpp	Wed Jan 16 16:30:04 2013 +0100
     1.2 +++ b/src/share/vm/runtime/arguments.cpp	Thu Jan 17 10:25:16 2013 -0500
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 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 @@ -532,7 +532,7 @@
    1.11  // Parses a memory size specification string.
    1.12  static bool atomull(const char *s, julong* result) {
    1.13    julong n = 0;
    1.14 -  int args_read = sscanf(s, os::julong_format_specifier(), &n);
    1.15 +  int args_read = sscanf(s, JULONG_FORMAT, &n);
    1.16    if (args_read != 1) {
    1.17      return false;
    1.18    }

mercurial