diff options
author | kfogel <kfogel@13f79535-47bb-0310-9956-ffa450edef68> | 2002-07-23 21:14:59 +0000 |
---|---|---|
committer | kfogel <kfogel@13f79535-47bb-0310-9956-ffa450edef68> | 2002-07-23 21:14:59 +0000 |
commit | 5ea634ac5c041d383c27f67aca8535a06b41a975 (patch) | |
tree | ba357f1874ab0a2d82bc178b7fa8579393ca25a6 /threadproc | |
parent | f36d94d6c8303f5a1731ea582a73207fa33c6e01 (diff) | |
download | libapr-5ea634ac5c041d383c27f67aca8535a06b41a975.tar.gz |
* httpd-2.0/srclib/apr/threadproc/unix/signals.c
(store_desc): Make the backslash quote a newline, not a space.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63725 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r-- | threadproc/unix/signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/signals.c b/threadproc/unix/signals.c index 1a3784d73..b8cfc6798 100644 --- a/threadproc/unix/signals.c +++ b/threadproc/unix/signals.c @@ -169,7 +169,7 @@ static const char *signal_description[APR_NUMSIG]; #define store_desc(index, string) \ do { \ if (index >= APR_NUMSIG) { \ - assert(index < APR_NUMSIG); \ + assert(index < APR_NUMSIG); \ } \ else { \ signal_description[index] = string; \ |