diff options
Diffstat (limited to 'src/fstring.h')
-rw-r--r-- | src/fstring.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fstring.h b/src/fstring.h index f738f63..43033b8 100644 --- a/src/fstring.h +++ b/src/fstring.h | |||
@@ -7,6 +7,8 @@ | |||
7 | #include "archive.h" | 7 | #include "archive.h" |
8 | #include "hash.h" | 8 | #include "hash.h" |
9 | 9 | ||
10 | #define min( a, b ) ((a<b)?(a):(b)) | ||
11 | |||
10 | namespace Bu | 12 | namespace Bu |
11 | { | 13 | { |
12 | template< typename chr > | 14 | template< typename chr > |
@@ -131,7 +133,7 @@ namespace Bu | |||
131 | appendChunk( pNew ); | 133 | appendChunk( pNew ); |
132 | } | 134 | } |
133 | 135 | ||
134 | void append( const chr cData ) | 136 | void append( const chr &cData ) |
135 | { | 137 | { |
136 | append( &cData, 1 ); | 138 | append( &cData, 1 ); |
137 | } | 139 | } |