gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-56


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-563-g194ad41
Date: Sun, 12 Jan 2014 19:31:16 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  194ad41aa394e36890e51975d14d60eacd3c5051 (commit)
      from  647bf98c9839d458c35deb0883ac29d6470fe152 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=194ad41aa394e36890e51975d14d60eacd3c5051


commit 194ad41aa394e36890e51975d14d60eacd3c5051
Author: Daniele Forsi <address@hidden>
Date:   Sun Jan 12 20:29:26 2014 +0100

    Fix gcc warning
    
    Fixes:
    common/phones/nk6510.c: In function 'NK6510_PressOrReleaseKey':
    common/phones/nk6510.c:5315:36: warning: suggest parentheses around 
comparison in operand of '|' [-Wparentheses]
      if (DRVINSTANCE(state)->pm->flags == PM_DEFAULT_S40_3RD)

diff --git a/include/misc.h b/include/misc.h
index c31478c..2bbe2c1 100644
--- a/include/misc.h
+++ b/include/misc.h
@@ -61,9 +61,9 @@
  */
 #define ceiling_to_octet(x) ((x) + 7) / 8
 
-#define PM_OLD_DEFAULT         PM_SPEEDDIAL | PM_SMS | PM_DTMF | PM_KEYBOARD | 
PM_CALENDAR
-#define PM_DEFAULT             PM_OLD_DEFAULT | PM_CALLERGROUP | PM_EXTPBK | 
PM_FOLDERS
-#define PM_DEFAULT_S40_3RD     PM_DEFAULT | PM_SMSFILE | PM_EXTPBK2 | 
PM_EXTCALENDAR
+#define PM_OLD_DEFAULT         (PM_SPEEDDIAL | PM_SMS | PM_DTMF | PM_KEYBOARD 
| PM_CALENDAR)
+#define PM_DEFAULT             (PM_OLD_DEFAULT | PM_CALLERGROUP | PM_EXTPBK | 
PM_FOLDERS)
+#define PM_DEFAULT_S40_3RD     (PM_DEFAULT | PM_SMSFILE | PM_EXTPBK2 | 
PM_EXTCALENDAR)
 /* Series 30 phones support a very limited subset of the Series 40 commands */
 #define PM_DEFAULT_S30         PM_DEFAULT_S40_3RD
 

-----------------------------------------------------------------------

Summary of changes:
 include/misc.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]