summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-03-07 15:47:54 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-03-07 15:47:54 +0100
commitbad8487bf919ba4b221b7be065c346221943812c (patch)
tree4eaefa20c8fabf95b070e051476a8383542336ed /src
parentf2e2bba844ed36ab3b9ce0c936dad673cfc865b9 (diff)
downloadabrt-bad8487bf919ba4b221b7be065c346221943812c.tar.gz
abrt-bad8487bf919ba4b221b7be065c346221943812c.tar.xz
abrt-bad8487bf919ba4b221b7be065c346221943812c.zip
minor build fixes
Diffstat (limited to 'src')
-rw-r--r--src/include/abrtlib.h2
-rw-r--r--src/include/report/event_xml_parser.h2
-rw-r--r--src/lib/event_xml_parser.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/include/abrtlib.h b/src/include/abrtlib.h
index 1b2f6bbc..6122f467 100644
--- a/src/include/abrtlib.h
+++ b/src/include/abrtlib.h
@@ -257,8 +257,6 @@ void parse_release_for_rhts(const char *pRelease, char **product, char **version
#define load_conf_file abrt_load_conf_file
bool load_conf_file(const char *pPath, map_string_h *settings, bool skipKeysWithoutValue);
-void load_event_description_from_file(event_obj_t *event_desc, const char* filename);
-
/* Tries to create a copy of dump_dir_name in base_dir, with same or similar basename.
* Returns NULL if copying failed. In this case, logs a message before returning. */
#define steal_directory abrt_steal_directory
diff --git a/src/include/report/event_xml_parser.h b/src/include/report/event_xml_parser.h
index caf81506..47852c67 100644
--- a/src/include/report/event_xml_parser.h
+++ b/src/include/report/event_xml_parser.h
@@ -39,3 +39,5 @@ typedef struct
const char *action;//action description to show in gui like: Upload report to the Red Hat bugzilla"
GList *options;
} event_obj_t;
+
+void load_event_description_from_file(event_obj_t *event_desc, const char* filename); \ No newline at end of file
diff --git a/src/lib/event_xml_parser.c b/src/lib/event_xml_parser.c
index 6b562957..d429291f 100644
--- a/src/lib/event_xml_parser.c
+++ b/src/lib/event_xml_parser.c
@@ -163,7 +163,7 @@ void error(GMarkupParseContext *context,
* and must be freed by the caller
*/
-void load_event_from_file(event_obj_t *ui, const char* filename)
+void load_event_description_from_file(event_obj_t *ui, const char* filename)
{
GMarkupParser parser;
parser.start_element = &start_element;