perf trace: Fix up error path indentation

Trivial fix removing a tab in an error path.

Link: http://lkml.kernel.org/n/tip-c14mk6cqaiby8gf5rpft3d9r@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2017-03-24 14:54:06 -03:00
parent 39f0e7a825
commit c04dfafa60
1 changed files with 1 additions and 1 deletions

View File

@ -1663,7 +1663,7 @@ static int trace__vfs_getname(struct trace *trace, struct perf_evsel *evsel,
char *f = realloc(ttrace->filename.name, filename_len + 1);
if (f == NULL)
goto out;
goto out;
ttrace->filename.namelen = filename_len;
ttrace->filename.name = f;