summaryrefslogtreecommitdiff
path: root/include/apr_getopt.h
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-02 05:56:12 +0000
committerDoug MacEachern <dougm@apache.org>2001-02-02 05:56:12 +0000
commitbe77ab2fb268947fdcebbccaab8e2758edfa3ce0 (patch)
treedc87083c1008be96f53d9e0de7299f5fc489e303 /include/apr_getopt.h
parentcc365d12034a23a15b85c6c5e9f5fb8ce4afefdb (diff)
downloadapr-be77ab2fb268947fdcebbccaab8e2758edfa3ce0.tar.gz
be consistent with 'const char * const *' spacing (noticed when parsing the tree with C::Scan)
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61179 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_getopt.h')
-rw-r--r--include/apr_getopt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_getopt.h b/include/apr_getopt.h
index 9feb6a721..404b7e77a 100644
--- a/include/apr_getopt.h
+++ b/include/apr_getopt.h
@@ -118,7 +118,7 @@ struct apr_getopt_option_t {
* @deffunc apr_status_t apr_initopt(apr_getopt_t **os, apr_pool_t *cont,int argc, char *const *argv)
*/
APR_DECLARE(apr_status_t) apr_initopt(apr_getopt_t **os, apr_pool_t *cont,
- int argc, const char *const *argv);
+ int argc, const char * const *argv);
/**
* Parse the options initialized by apr_initopt().