aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortenox <as@tenoware.com>2016-08-06 00:39:22 -0700
committertenox <as@tenoware.com>2016-08-06 00:39:22 -0700
commit9fa9f59a55146231af2b3f83986815553332293b (patch)
tree4d0d3f5d17ecf07a048fce2d1fc3cc6178c28de6
parent8a3af323df6e251c411b80aa7b16a96a86717a9f (diff)
downloadwfm-9fa9f59a55146231af2b3f83986815553332293b.tar.gz
tab/spc fix
-rw-r--r--wfm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/wfm.h b/wfm.h
index 1344f2a..9f6d6c6 100644
--- a/wfm.h
+++ b/wfm.h
@@ -1,5 +1,5 @@
#define VERSION "1.0.1"
-#define copyright "<!-- WFM Version " VERSION ", Mountain View, CA, " __DATE__ " [" __TIME__ "] -->\n<!-- Copyright (c) 1994-2016 by Antoni Sawicki -->\n"
+#define copyright "<!-- WFM Version " VERSION ", Mountain View, CA, " __DATE__ " [" __TIME__ "] -->\n<!-- Copyright (c) 1994-2015 by Antoni Sawicki -->\n"
#define CSS_STYLE \
" <STYLE TYPE=\"text/css\"><!-- \n" \
@@ -19,8 +19,8 @@
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n" \
" \"http://www.w3.org/TR/html4/loose.dtd\">\n" \
"<HTML>\n" \
- copyright \
- "<HEAD>\n" \
+ copyright \
+ "<HEAD>\n" \
" <META HTTP-EQUIV=\"Content-type\" CONTENT=\"text/html;charset=UTF-8\">\n" \
CSS_STYLE
@@ -107,10 +107,10 @@ enum { FALSE, TRUE };
enum { PERM_NO, PERM_RO, PERM_RW };
typedef struct asdir_ {
- char name[NAME_MAX];
+ char name[NAME_MAX];
mode_t type;
- off_t size;
- time_t atime, mtime, rtime;
+ off_t size;
+ time_t atime, mtime, rtime;
} ASDIR;
int namesort(const void *, const void *);