fix indent
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: file.c,v 1.211 2003/01/29 17:10:32 ukai Exp $ */
|
||||
/* $Id: file.c,v 1.212 2003/01/29 17:26:51 ukai Exp $ */
|
||||
#include "fm.h"
|
||||
#include <sys/types.h>
|
||||
#include "myctype.h"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: image.c,v 1.30 2003/01/29 17:10:40 ukai Exp $ */
|
||||
/* $Id: image.c,v 1.31 2003/01/29 17:26:52 ukai Exp $ */
|
||||
|
||||
#include "fm.h"
|
||||
#include <sys/types.h>
|
||||
@@ -345,11 +345,11 @@ loadImage(Buffer *buf, int flag)
|
||||
if (cache->pid) {
|
||||
kill(cache->pid, SIGKILL);
|
||||
/*
|
||||
#ifdef HAVE_WAITPID
|
||||
waitpid(cache->pid, &wait_st, 0);
|
||||
#else
|
||||
wait(&wait_st);
|
||||
#endif
|
||||
* #ifdef HAVE_WAITPID
|
||||
* waitpid(cache->pid, &wait_st, 0);
|
||||
* #else
|
||||
* wait(&wait_st);
|
||||
* #endif
|
||||
*/
|
||||
cache->pid = 0;
|
||||
}
|
||||
@@ -374,11 +374,11 @@ loadImage(Buffer *buf, int flag)
|
||||
if (cache->pid) {
|
||||
kill(cache->pid, SIGKILL);
|
||||
/*
|
||||
#ifdef HAVE_WAITPID
|
||||
waitpid(cache->pid, &wait_st, 0);
|
||||
#else
|
||||
wait(&wait_st);
|
||||
#endif
|
||||
* #ifdef HAVE_WAITPID
|
||||
* waitpid(cache->pid, &wait_st, 0);
|
||||
* #else
|
||||
* wait(&wait_st);
|
||||
* #endif
|
||||
*/
|
||||
cache->pid = 0;
|
||||
}
|
||||
@@ -428,7 +428,7 @@ loadImage(Buffer *buf, int flag)
|
||||
if ((cache->pid = fork()) == 0) {
|
||||
Buffer *b;
|
||||
/*
|
||||
setup_child(TRUE, 0, -1);
|
||||
* setup_child(TRUE, 0, -1);
|
||||
*/
|
||||
setup_child(FALSE, 0, -1);
|
||||
image_source = cache->file;
|
||||
|
||||
Reference in New Issue
Block a user