diff options
author | striker <striker@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-22 09:05:18 +0000 |
---|---|---|
committer | striker <striker@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-22 09:05:18 +0000 |
commit | 860b9b550d150bfbc04fdf728258b922c5fd42de (patch) | |
tree | 5bfcdc62546dad7cb6bcd9576bb94760e76e1923 | |
parent | a7de4e792fa7b46623fc5f29fd42abe6400215c8 (diff) | |
download | libapr-860b9b550d150bfbc04fdf728258b922c5fd42de.tar.gz |
Fix a macro call (should have cut the POOL part out in last commit).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63291 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | include/apr_pools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_pools.h b/include/apr_pools.h index 4d95dcd91..620578bd6 100644 --- a/include/apr_pools.h +++ b/include/apr_pools.h @@ -167,7 +167,7 @@ typedef struct apr_pool_t apr_pool_t; #endif /** the place in the code where the particular function was called */ -#define APR_POOL__FILE_LINE__ __FILE__ ":" APR_POOL_STRINGIFY(__LINE__) +#define APR_POOL__FILE_LINE__ __FILE__ ":" APR_STRINGIFY(__LINE__) |