[Xfce4-commits] [apps/orage] 01/01: 4.11.2.20 Fixed syntax error in fopen
noreply at xfce.org
noreply at xfce.org
Thu Mar 12 12:49:28 CET 2015
This is an automated email from the git hooks/post-receive script.
juha pushed a commit to branch master
in repository apps/orage.
commit 757ad1948ccc367ce2ed734aaccb187d7fa681ea
Author: Juha Kautto <juha at xfce.org>
Date: Thu Mar 12 13:48:44 2015 +0200
4.11.2.20 Fixed syntax error in fopen
Moved closing ) to correct place
---
configure.in.in | 2 +-
src/tz_zoneinfo_read.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/configure.in.in b/configure.in.in
index 61b7ace..79f55f6 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto <juha at xfce.org>
dnl
dnl Version information
-m4_define([orage_version], [4.11.2.19-git])
+m4_define([orage_version], [4.11.2.20-git])
m4_define([gtk_minimum_version], [2.14.0])
m4_define([xfce_minimum_version], [4.8.0])
diff --git a/src/tz_zoneinfo_read.c b/src/tz_zoneinfo_read.c
index 150e99b..fb39024 100644
--- a/src/tz_zoneinfo_read.c
+++ b/src/tz_zoneinfo_read.c
@@ -657,7 +657,8 @@ static int check_parameters(void)
}
else { /* no errors */
in_file = malloc(par_file_stat.st_size+1);
- if ((fread(in_file, 1, par_file_stat.st_size, par_file < par_file_stat.st_size))
+ if ((fread(in_file, 1, par_file_stat.st_size, par_file)
+ < par_file_stat.st_size)
&& (ferror(par_file))) {
printf("check_parameters: error reading (%s)\n"
, TZ_CONVERT_PAR_FILE_LOC);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list