diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2003-04-28 01:28:08 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2003-04-28 01:28:08 -0400 |
commit | 03413d1c868839950b21fd0b10fa5f31fff83964 (patch) | |
tree | 69b5d38bd1d80a009b23a41cd40148e434e13e38 /WWW/Library/Implementation/HTFile.c | |
parent | c812b42f4248ea1ab6641616f6aef08d402d9f92 (diff) | |
download | lynx-snapshots-03413d1c868839950b21fd0b10fa5f31fff83964.tar.gz |
snapshot of project "lynx", label v2-8-5dev_15
Diffstat (limited to 'WWW/Library/Implementation/HTFile.c')
-rw-r--r-- | WWW/Library/Implementation/HTFile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c index 47754cd7..03f427b6 100644 --- a/WWW/Library/Implementation/HTFile.c +++ b/WWW/Library/Implementation/HTFile.c @@ -2781,11 +2781,11 @@ PUBLIC void HTSetProgramPath ARGS2( */ PUBLIC void HTInitProgramPaths NOARGS { - ProgramPaths code; + int code; CONST char *path; CONST char *test; - for (code = ppUnknown + 1; code < pp_Last; ++code) { + for (code = (int) ppUnknown + 1; code < (int) pp_Last; ++code) { switch (code) { #ifdef BZIP2_PATH case ppBZIP2: |