summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-05-22 21:28:58 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-05-22 21:28:58 +0200
commit1fef96e2031952fccc4cf9ed189b50fec9360a06 (patch)
tree861d8a81ff6d093806b32c0b9fafb88143963df6 /src/include
parentcba90f009109235ce653b0e41bb7c50d66d48a94 (diff)
downloadabrt-1fef96e2031952fccc4cf9ed189b50fec9360a06.tar.gz
abrt-1fef96e2031952fccc4cf9ed189b50fec9360a06.tar.xz
abrt-1fef96e2031952fccc4cf9ed189b50fec9360a06.zip
assorted cleanups, memory leak fix (g_list_free in add_basics_to_problem_data)
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/report/report.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/report/report.h b/src/include/report/report.h
index f57d5277..e441875b 100644
--- a/src/include/report/report.h
+++ b/src/include/report/report.h
@@ -22,8 +22,8 @@
#include "problem_data.h"
enum {
- NOWAIT = 0,
- WAIT = (1 << 0), /* wait for report to finish and reload the problem data */
+ LIBREPORT_NOWAIT = 0,
+ LIBREPORT_WAIT = (1 << 0), /* wait for report to finish and reload the problem data */
};