diff options
author | jstebbins <[email protected]> | 2008-09-11 16:12:31 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-11 16:12:31 +0000 |
commit | 3542367d63f7fb4d443645e5a61ff60ae709382b (patch) | |
tree | 27d8b6b1add0421ffbadf290be7048d98e23ac15 /gtk/src/plist.c | |
parent | a3a83842d26ad83b8e7a7b9dd876e8ce6af9dcb9 (diff) |
LinGui: change deblock control to a slider to set deblock strength
also clean up some resource handling. delete several depricated files.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1689 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/plist.c')
-rw-r--r-- | gtk/src/plist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/src/plist.c b/gtk/src/plist.c index 83e9326ab..79da274d2 100644 --- a/gtk/src/plist.c +++ b/gtk/src/plist.c @@ -392,7 +392,10 @@ ghb_plist_parse_file(const gchar *filename) fd = g_fopen(filename, "r"); if (fd == NULL) + { + g_warning("Plist parse: failed to open %s", filename); return NULL; + } fseek(fd, 0, SEEK_END); size = ftell(fd); fseek(fd, 0, SEEK_SET); |