gnokii-commit
[Top][All Lists]
Advanced

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

[SCM] Additional programs and language bindings branch, master, updated.


From: Daniele Forsi
Subject: [SCM] Additional programs and language bindings branch, master, updated. 6128b645014ce741965ac8ac53ae45cede2b4fe7
Date: Sat, 24 Mar 2012 10:30:51 +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 "Additional programs and language bindings".

The branch, master has been updated
       via  6128b645014ce741965ac8ac53ae45cede2b4fe7 (commit)
      from  bf97a75be6cfb60e2126a0287592860623366d30 (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/gnokii-extras.git/commit/?id=6128b645014ce741965ac8ac53ae45cede2b4fe7


commit 6128b645014ce741965ac8ac53ae45cede2b4fe7
Author: Daniele Forsi <address@hidden>
Date:   Sat Mar 24 11:29:07 2012 +0100

    Fix compiler warning
    
    Fixes:
    cellid.c: In function ‘signal_handler’:
    cellid.c:72: warning: unused parameter ‘signal’

diff --git a/snippets/ChangeLog b/snippets/ChangeLog
index 7194ecb..0ead3f6 100644
--- a/snippets/ChangeLog
+++ b/snippets/ChangeLog
@@ -1,4 +1,8 @@
-20010/02/12
+2012/03/24
+ * monitor/
+    o fix compiler warning in cellid.c                       (Daniele Forsi)
+
+2010/02/12
  * monitor/
     o add missing cellid.c and cellid.readme                 (Daniele Forsi)
 
diff --git a/snippets/monitor/cellid.c b/snippets/monitor/cellid.c
index 9f59c10..74dd406 100644
--- a/snippets/monitor/cellid.c
+++ b/snippets/monitor/cellid.c
@@ -70,6 +70,7 @@ void businit(void) {
 }
 
 void signal_handler(int signal) {
+       (void)signal;
        exit(-2);
 }
 

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

Summary of changes:
 snippets/ChangeLog        |    6 +++++-
 snippets/monitor/cellid.c |    1 +
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Additional programs and language bindings



reply via email to

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