diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-17 17:06:57 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-17 17:06:57 +0000 |
commit | 264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3 (patch) | |
tree | 43d60426de87a3dcfc3947b6ed792ab29499d2fe /local.c | |
parent | [w3m-dev 03647] expandName() and expandPath() (diff) | |
download | w3m-264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3.tar.gz w3m-264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3.zip |
fix indent
Diffstat (limited to '')
-rw-r--r-- | local.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: local.c,v 1.23 2003/01/17 17:06:03 ukai Exp $ */ +/* $Id: local.c,v 1.24 2003/01/17 17:07:00 ukai Exp $ */ #include "fm.h" #include <string.h> #include <stdio.h> @@ -300,7 +300,7 @@ checkPath(char *fn, char *path) Str tmp; struct stat st; while (*path) { - p = strchr(path, ':'); + p = strchr(path, ':'); tmp = Strnew_charp(expandPath(p ? allocStr(path, p - path) : path)); if (Strlastchar(tmp) != '/') Strcat_char(tmp, '/'); |