Skip to content

Commit 3026cb3

Browse files
committed
Merge r1932996 from trunk:
apr_cstr.h: Fix inclusion of other APR headers Use double quotation marks, not angle brackets, when including other APR headers from apr_cstr.h. This matches what all the other APR headers do and avoids tripping certain static analysis tools. Submitted by: Dag-Erling Smørgrav <des@des.dev> This closes #70 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1933000 13f79535-47bb-0310-9956-ffa450edef68
1 parent d7a4f5b commit 3026cb3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/apr_cstr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
#ifndef APR_CSTR_H
2727
#define APR_CSTR_H
2828

29-
#include <apr.h> /* for apr_size_t */
30-
#include <apr_pools.h> /* for apr_pool_t */
31-
#include <apr_tables.h> /* for apr_array_header_t */
29+
#include "apr.h" /* for apr_size_t */
30+
#include "apr_pools.h" /* for apr_pool_t */
31+
#include "apr_tables.h" /* for apr_array_header_t */
3232

3333
#ifdef __cplusplus
3434
extern "C" {

0 commit comments

Comments
 (0)