diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-19 17:33:57 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-19 17:33:57 +0100 |
| commit | 811e5d7e9917558b9529c42a9cc86a773b31c0c2 (patch) | |
| tree | 8b62f6718e1bbcd997530a9e38fe57046af302c7 /src/CLI/CLI.cpp | |
| parent | 186bde035d2789a0067d8137bdb9afde635802c8 (diff) | |
| parent | 764c3a1e4f21c635c565cf5c20c480dbf48d1599 (diff) | |
| download | abrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.tar.gz abrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.tar.xz abrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/CLI.cpp')
| -rw-r--r-- | src/CLI/CLI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CLI/CLI.cpp b/src/CLI/CLI.cpp index bc8ddf6..2f3b404 100644 --- a/src/CLI/CLI.cpp +++ b/src/CLI/CLI.cpp @@ -47,12 +47,12 @@ enum OPT_DELETE }; -static void print_crash_infos(vector_crash_infos_t& pCrashInfos, int pMode) +static void print_crash_infos(vector_map_crash_data_t& pCrashInfos, int pMode) { unsigned int ii; for (ii = 0; ii < pCrashInfos.size(); ii++) { - map_crash_info_t& info = pCrashInfos[ii]; + map_crash_data_t& info = pCrashInfos[ii]; if (pMode == OPT_GET_LIST_FULL || info[CD_REPORTED][CD_CONTENT] != "1") { const char *timestr = info[CD_TIME][CD_CONTENT].c_str(); @@ -189,7 +189,7 @@ int main(int argc, char** argv) case OPT_GET_LIST: case OPT_GET_LIST_FULL: { - vector_crash_infos_t ci = call_GetCrashInfos(); + vector_map_crash_data_t ci = call_GetCrashInfos(); print_crash_infos(ci, op); break; } |
