]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fixing a signedness conversion warning
authorStefan Eissing <icing@apache.org>
Tue, 9 Jul 2019 10:56:58 +0000 (10:56 +0000)
committerStefan Eissing <icing@apache.org>
Tue, 9 Jul 2019 10:56:58 +0000 (10:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1862802 13f79535-47bb-0310-9956-ffa450edef68

modules/md/md_store_fs.c

index e75566194841536b4d1fa61fd35eeb61bedde0ed..04c7e6055793123f2b019b6d4aeb909dffd79e07 100644 (file)
@@ -457,7 +457,7 @@ static apr_status_t pfs_load(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_l
     return rv;
 }
 
-static apr_status_t dispatch(md_store_fs_t *s_fs, md_store_fs_ev_t ev, int group, 
+static apr_status_t dispatch(md_store_fs_t *s_fs, md_store_fs_ev_t ev, unsigned int group, 
                              const char *fname, apr_filetype_e ftype, apr_pool_t *p)
 {
     (void)ev;