summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-05-05 15:03:03 +0200
committerKarel Klic <kklic@redhat.com>2010-05-05 15:03:03 +0200
commit14fd7bf27dd0d320f29dc3db163e244e150c7501 (patch)
tree1bca4f29c37fafa6a37e728665d6e093dcc8a11e /lib
parent7abb4cb08e46cbe661f62a7f1456b31770847a34 (diff)
downloadabrt-14fd7bf27dd0d320f29dc3db163e244e150c7501.tar.gz
abrt-14fd7bf27dd0d320f29dc3db163e244e150c7501.tar.xz
abrt-14fd7bf27dd0d320f29dc3db163e244e150c7501.zip
comments
Diffstat (limited to 'lib')
-rw-r--r--lib/Utils/strbuf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Utils/strbuf.h b/lib/Utils/strbuf.h
index 8b43424a..bc843f95 100644
--- a/lib/Utils/strbuf.h
+++ b/lib/Utils/strbuf.h
@@ -26,9 +26,9 @@ extern "C" {
struct strbuf
{
- /* Size of the allocated buffer. */
+ /* Size of the allocated buffer. Always > 0. */
int alloc;
- /* Length of the message. */
+ /* Length of the message, without the ending \0. */
int len;
char *buf;
};