mirror of https://github.com/thesofproject/sof.git
tools: logger: Align indentation in convert function
Content inside if statement should be indented with only one tab more that if keyword. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This commit is contained in:
parent
564bae412b
commit
0f3d84ecea
|
@ -640,14 +640,14 @@ int convert(struct convert_config *config)
|
||||||
fprintf(stderr, "Error: abi version in %s file "
|
fprintf(stderr, "Error: abi version in %s file "
|
||||||
"does not coincide with abi version used "
|
"does not coincide with abi version used "
|
||||||
"by logger.\n", config->ldc_file);
|
"by logger.\n", config->ldc_file);
|
||||||
fprintf(stderr, "logger ABI Version is %d:%d:%d\n",
|
fprintf(stderr, "logger ABI Version is %d:%d:%d\n",
|
||||||
SOF_ABI_VERSION_MAJOR(SOF_ABI_DBG_VERSION),
|
SOF_ABI_VERSION_MAJOR(SOF_ABI_DBG_VERSION),
|
||||||
SOF_ABI_VERSION_MINOR(SOF_ABI_DBG_VERSION),
|
SOF_ABI_VERSION_MINOR(SOF_ABI_DBG_VERSION),
|
||||||
SOF_ABI_VERSION_PATCH(SOF_ABI_DBG_VERSION));
|
SOF_ABI_VERSION_PATCH(SOF_ABI_DBG_VERSION));
|
||||||
fprintf(stderr, "ldc_file ABI Version is %d:%d:%d\n",
|
fprintf(stderr, "ldc_file ABI Version is %d:%d:%d\n",
|
||||||
SOF_ABI_VERSION_MAJOR(snd.version.abi_version),
|
SOF_ABI_VERSION_MAJOR(snd.version.abi_version),
|
||||||
SOF_ABI_VERSION_MINOR(snd.version.abi_version),
|
SOF_ABI_VERSION_MINOR(snd.version.abi_version),
|
||||||
SOF_ABI_VERSION_PATCH(snd.version.abi_version));
|
SOF_ABI_VERSION_PATCH(snd.version.abi_version));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue