fix formatting in get_process_filename.c

This commit is contained in:
Michael Stapelberg 2012-12-24 16:57:30 +01:00
parent 66b1dadc38
commit 9882a4dc09
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ char *get_process_filename(const char *prefix) {
char *tmp;
sasprintf(&tmp, "%s/i3", dir);
dir = tmp;
struct stat buf;
if (stat(dir, &buf) != 0) {
struct stat buf;
if (stat(dir, &buf) != 0) {
if (mkdir(dir, 0700) == -1) {
perror("mkdir()");
return NULL;