infer_clone/infer/documentation/issues/CHECKERS_PRINTF_ARGS.md

271 B

This error is reported when the argument types to a printf method do not match the format string.

  void stringInsteadOfInteger(PrintStream out) {
    out.printf("Hello %d", "world");
  }

Action: fix the mismatch between format string and argument types.