diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-09 15:24:58 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-09 15:24:58 +0000 |
commit | 5d552dad992076ce7fe4b5f42b613986eeda137d (patch) | |
tree | 296121dad4b338cc4636dc57813076d71f810825 | |
parent | [w3m-dev 03033] SSL indicator (diff) | |
download | w3m-5d552dad992076ce7fe4b5f42b613986eeda137d.tar.gz w3m-5d552dad992076ce7fe4b5f42b613986eeda137d.zip |
fix indent
-rw-r--r-- | image.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |