rt-tests: rt-utils.c: Correct mix of spaces and tabs in code indentation

Fix the mix of spaces and tabs in the code indentation.

Signed-off-by: John Kacur <jkacur@redhat.com>
This commit is contained in:
John Kacur 2020-10-29 13:12:06 -04:00
parent 28d159fc3d
commit 529b233b2b
1 changed files with 5 additions and 5 deletions

View File

@ -392,11 +392,11 @@ void open_tracemark_fd(void)
int trace_file_exists(char *name) int trace_file_exists(char *name)
{ {
struct stat sbuf; struct stat sbuf;
char *tracing_prefix = get_debugfileprefix(); char *tracing_prefix = get_debugfileprefix();
char path[MAX_PATH]; char path[MAX_PATH];
strcat(strcpy(path, tracing_prefix), name); strcat(strcpy(path, tracing_prefix), name);
return stat(path, &sbuf) ? 0 : 1; return stat(path, &sbuf) ? 0 : 1;
} }
void debugfs_prepare(void) void debugfs_prepare(void)