diff options
author | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-09-26 18:59:06 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-09-26 18:59:06 +0000 |
commit | d053a94be8cee23c926a23aa7c8c11a9fbbc725b (patch) | |
tree | a40c45399cdc38d17cb0bc39d9189d13a02f7220 /src/common | |
parent | Fix a parsing error in the Linux dump writer. (diff) | |
download | breakpad-d053a94be8cee23c926a23aa7c8c11a9fbbc725b.tar.xz |
Fix a bunch of small nits.
Review URL: https://breakpad.appspot.com/463004
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1051 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/linux/linux_libc_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/linux/linux_libc_support.h b/src/common/linux/linux_libc_support.h index 011048f8..3429600b 100644 --- a/src/common/linux/linux_libc_support.h +++ b/src/common/linux/linux_libc_support.h @@ -57,7 +57,7 @@ extern unsigned my_uint_len(uintmax_t i); // Convert an unsigned integer to a string // output: (output) the resulting string is written here. This buffer must be -// large enough to hold the resulting string. Call |my_int_len| to get the +// large enough to hold the resulting string. Call |my_uint_len| to get the // required length. // i: the unsigned integer to serialise. // i_len: the length of the integer in base 10 (see |my_uint_len|). |