summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-31 22:41:17 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-31 22:41:17 +0000
commite0a4ebd4a0815495074e7a3c09c4729149b98d6b (patch)
tree8425726b67fbbda5d74c3548f68d9f456c56d77b
parent268028fe79a02b60e1385059f917470fb3545250 (diff)
downloadlibapr-e0a4ebd4a0815495074e7a3c09c4729149b98d6b.tar.gz
Absolutely explicit that finfo.filetype APR_NOFILE is 0 (or false).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61175 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_file_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 181d38969..44e37ee19 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -74,7 +74,7 @@ extern "C" {
*/
typedef enum {
- APR_NOFILE, /* the file exists, but APR doesn't know its type */
+ APR_NOFILE = 0, /* the file exists, but APR doesn't know its type */
APR_REG, /* a regular file */
APR_DIR, /* a directory */
APR_CHR, /* a character device */