mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
Fix typos in save_regsitry()
Original commit message from CVS: Fix typos in save_regsitry()
This commit is contained in:
parent
9b1970967e
commit
39c609765b
1 changed files with 4 additions and 4 deletions
|
@ -100,7 +100,7 @@ static void check_dir(const char * dirname) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void save_registry(const char *destfile) {
|
static void save_registry(const char *destfile, xmlDocPtr * doc) {
|
||||||
#if 0
|
#if 0
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
|
|
||||||
|
@ -112,14 +112,14 @@ static void save_registry(const char *destfile) {
|
||||||
|
|
||||||
// FIXME: no way to check success of xmlDocDump, which is why
|
// FIXME: no way to check success of xmlDocDump, which is why
|
||||||
// this piece of code is ifdefed out.
|
// this piece of code is ifdefed out.
|
||||||
xmlDocDump(fp, doc);
|
xmlDocDump(fp, *doc);
|
||||||
|
|
||||||
if (!fclose(fp)) {
|
if (!fclose(fp)) {
|
||||||
g_print("Cannot close `%s' having saved new registry.", destfile);
|
g_print("Cannot close `%s' having saved new registry.", destfile);
|
||||||
error_perm();
|
error_perm();
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (xmlSaveFile(destfile, doc) <= 0) {
|
if (xmlSaveFile(destfile, *doc) <= 0) {
|
||||||
g_print("Cannot save new registry to `%s'", destfile);
|
g_print("Cannot save new registry to `%s'", destfile);
|
||||||
error_perm();
|
error_perm();
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ int main(int argc,char *argv[])
|
||||||
gst_plugin_save_thyself(doc->root);
|
gst_plugin_save_thyself(doc->root);
|
||||||
|
|
||||||
// Save the registry to a tmp file.
|
// Save the registry to a tmp file.
|
||||||
save_registry(GLOBAL_REGISTRY_FILE_TMP);
|
save_registry(GLOBAL_REGISTRY_FILE_TMP, &doc);
|
||||||
|
|
||||||
// Make the tmp file live.
|
// Make the tmp file live.
|
||||||
move_file(GLOBAL_REGISTRY_FILE_TMP, GLOBAL_REGISTRY_FILE);
|
move_file(GLOBAL_REGISTRY_FILE_TMP, GLOBAL_REGISTRY_FILE);
|
||||||
|
|
Loading…
Reference in a new issue