Remove a semicolon from a macro.  This makes things a bit more readable,
and it makes this macro look like the rest of our macros.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/trunk@58125 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/include/apr_optional.h b/include/apr_optional.h
index f301e55..944af47 100644
--- a/include/apr_optional.h
+++ b/include/apr_optional.h
@@ -79,7 +79,7 @@
  * @param args The function arguments (including brackets)
  */
 #define APR_DECLARE_OPTIONAL_FN(ret,name,args) \
-typedef ret APR_OPTIONAL_FN_TYPE(name) args;
+typedef ret APR_OPTIONAL_FN_TYPE(name) args
 
 /* XXX: This doesn't belong here, then!
  * Private function! DO NOT USE!