diff options
author | 2012-01-03 02:23:29 +0000 | |
---|---|---|
committer | 2012-01-03 02:23:29 +0000 | |
commit | 85f5960fb3e9a15bff96c72902488507b2a7fb88 (patch) | |
tree | cb303f75ba359d028b4ec8008e681581e566db73 /src/lib/util/astring.c | |
parent | 9edff9295e0199049844a92eedca690f3f78017c (diff) |
fix linking (how did this work on anything?) (nw)
Diffstat (limited to 'src/lib/util/astring.c')
-rw-r--r-- | src/lib/util/astring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/astring.c b/src/lib/util/astring.c index 984848f152f..e890eea884a 100644 --- a/src/lib/util/astring.c +++ b/src/lib/util/astring.c @@ -64,7 +64,7 @@ static const astring dummy_astring; // given string, or else reallocate our buffer //------------------------------------------------- -inline bool astring::ensure_room(int length) +bool astring::ensure_room(int length) { // always fail to expand the dummy if (this == &dummy_astring) |