perf jit: Add missing curly braces
It doesn't change the runtime behavior, but my static checker complains that curly braces were intended. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: kernel-janitors@vger.kernel.org Link: http://lkml.kernel.org/r/20160715210712.GA19522@mwanda Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
09211e2530
commit
e03141db36
1 changed files with 2 additions and 1 deletions
|
@ -491,10 +491,11 @@ jvmti_write_debug_info(void *agent, uint64_t code, const char *file,
|
|||
if (sret != 1)
|
||||
goto error;
|
||||
}
|
||||
if (padding_count)
|
||||
if (padding_count) {
|
||||
sret = fwrite_unlocked(pad_bytes, padding_count, 1, fp);
|
||||
if (sret != 1)
|
||||
goto error;
|
||||
}
|
||||
|
||||
funlockfile(fp);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue