fix indent

This commit is contained in:
Fumitoshi UKAI
2002-11-15 15:57:16 +00:00
parent 6a9b87edf9
commit 875c34f259
2 changed files with 12 additions and 10 deletions

8
file.c
View File

@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.119 2002/11/15 15:56:36 ukai Exp $ */
/* $Id: file.c,v 1.120 2002/11/15 15:57:16 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -4953,8 +4953,10 @@ HTMLlineproc2body(Buffer *buf, Str (*feed) (), int llimit)
image->url = parsedURL2Str(&u)->ptr;
image->ext = filename_extension(u.file, TRUE);
image->cache = NULL;
image->width = (w > MAX_IMAGE_SIZE) ? MAX_IMAGE_SIZE: w;
image->height = (h > MAX_IMAGE_SIZE) ? MAX_IMAGE_SIZE: h;
image->width =
(w > MAX_IMAGE_SIZE) ? MAX_IMAGE_SIZE : w;
image->height =
(h > MAX_IMAGE_SIZE) ? MAX_IMAGE_SIZE : h;
image->xoffset = xoffset;
image->yoffset = yoffset;
image->y = currentLn(buf) - top;

View File

@@ -1,4 +1,4 @@
/* $Id: image.c,v 1.18 2002/11/15 15:56:36 ukai Exp $ */
/* $Id: image.c,v 1.19 2002/11/15 15:57:16 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>