diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-13 15:33:40 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-13 15:33:40 +0000 | 
| commit | bb009f2d9a7f5a82a56f744ca8fb8a7dca134a73 (patch) | |
| tree | 738e41c8cca96c30746f0eae25905eee1b788dd0 | |
| parent | [w3m-dev 03821] fix for pmake (diff) | |
| download | w3m-bb009f2d9a7f5a82a56f744ca8fb8a7dca134a73.tar.gz w3m-bb009f2d9a7f5a82a56f744ca8fb8a7dca134a73.zip | |
fix indent
| -rw-r--r-- | mktable.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -1,4 +1,4 @@ -/* $Id: mktable.c,v 1.12 2003/03/12 18:27:07 ukai Exp $ */ +/* $Id: mktable.c,v 1.13 2003/03/13 15:33:40 ukai Exp $ */  #include <stdio.h>  #include <stdlib.h>  #include "myctype.h" @@ -50,7 +50,7 @@ main(int argc, char *argv[], char **envp)      }      p = argv[2];      if (strrchr(p, '/') != NULL) -	p = strrchr(p, '/')+1; +	p = strrchr(p, '/') + 1;      fbase = Strnew_charp(p);      if (strchr(fbase->ptr, '.'))  	while (Strlastchar(fbase) != '.') | 
