fix indent

This commit is contained in:
Fumitoshi UKAI
2002-02-09 15:24:58 +00:00
parent 066998e428
commit 5d552dad99

View File

@@ -1,4 +1,4 @@
/* $Id: image.c,v 1.5 2002/02/08 14:29:52 ukai Exp $ */
/* $Id: image.c,v 1.6 2002/02/09 15:24:58 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
@@ -495,7 +495,7 @@ loadImage(int flag)
symlink(cache->file, cache->touch);
if (lstat(image_lock, &st)) {
if (symlink(cache->file, image_lock))
exit(0);
exit(0);
#else
f = fopen(cache->touch, "w");
if (f)
@@ -503,7 +503,7 @@ loadImage(int flag)
if (stat(image_lock, &st)) {
f = fopen(image_lock, "w");
if (!f)
exit(0);
exit(0);
fclose(f);
#endif
kill(getppid(), SIGUSR1);