diff options
| author | horchi <vdr@jwendel.de> | 2020-02-12 13:00:02 +0100 |
|---|---|---|
| committer | horchi <vdr@jwendel.de> | 2020-02-12 13:00:02 +0100 |
| commit | 5ed9f308906f88080509e9d8322ef451430ecfbe (patch) | |
| tree | af3cc7c2b5aafaa2b2982aa429cb8e7ea69e76ad /lib | |
| parent | c476c2e84f1c44373f6ea8274f92bf7f97ff9c9f (diff) | |
| download | vdr-plugin-epg2vdr-5ed9f308906f88080509e9d8322ef451430ecfbe.tar.gz vdr-plugin-epg2vdr-5ed9f308906f88080509e9d8322ef451430ecfbe.tar.bz2 | |
improved cleanup of pictures
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.c b/lib/common.c index a452b23..2793537 100644 --- a/lib/common.c +++ b/lib/common.c @@ -977,7 +977,6 @@ int removeFile(const char* filename) if (unlink(filename) != 0) { tell(0, "Can't remove file '%s', '%s'", filename, strerror(errno)); - return 1; } @@ -1027,6 +1026,7 @@ xsltStylesheetPtr loadXSLT(const char* name, const char* path, int utf8) tell(0, "Info: Stylesheet '%s' loaded", xsltfile); free(xsltfile); + return stylesheet; } #endif |
