diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-08 16:07:31 +0100 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-08 16:07:31 +0100 |
| commit | dc3c5b79ba1ee6fd7a98842fde43d072e004f93b (patch) | |
| tree | 131a23c0e5ac6c6be1f23872753ac1ae62e7f7fa /src/cli | |
| parent | cba369350c57dc763814376ac4cba8a011962fc7 (diff) | |
| download | abrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.tar.gz abrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.tar.xz abrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.zip | |
add abrt_ prefixes to abrt-internal functions in libabrt.so
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/cli')
| -rw-r--r-- | src/cli/CLI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/CLI.cpp b/src/cli/CLI.cpp index cdce6b8a..aeb1d461 100644 --- a/src/cli/CLI.cpp +++ b/src/cli/CLI.cpp @@ -164,7 +164,7 @@ static char *guess_crash_id(const char *str) unsigned num_crashinfos = ci->len; if (str[0] == '@') /* "--report @N" syntax */ { - unsigned position = xatoi_u(str + 1); + unsigned position = xatoi_positive(str + 1); if (position >= num_crashinfos) error_msg_and_die("There are only %u crash infos", num_crashinfos); crash_data_t *info = get_crash_data(ci, position); |
