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. 6137b9d2e5df7338589da7d52b1449042b526756
Date: Sat, 24 Mar 2012 10:42:25 +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  6137b9d2e5df7338589da7d52b1449042b526756 (commit)
      from  6128b645014ce741965ac8ac53ae45cede2b4fe7 (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=6137b9d2e5df7338589da7d52b1449042b526756


commit 6137b9d2e5df7338589da7d52b1449042b526756
Author: Daniele Forsi <address@hidden>
Date:   Sat Mar 24 11:41:17 2012 +0100

    Fix build failure
    
    Fixes:
    waitcall.c: In function ‘main’:
    waitcall.c:183: error: ‘gn_data’ has no member named 
‘call_notification’

diff --git a/snippets/ChangeLog b/snippets/ChangeLog
index 0ead3f6..46d5b3d 100644
--- a/snippets/ChangeLog
+++ b/snippets/ChangeLog
@@ -1,6 +1,7 @@
 2012/03/24
  * monitor/
     o fix compiler warning in cellid.c                       (Daniele Forsi)
+    o fix build failure in waitcall.c due to changed API     (Daniele Forsi)
 
 2010/02/12
  * monitor/
diff --git a/snippets/monitor/waitcall.c b/snippets/monitor/waitcall.c
index abd2577..68192b7 100644
--- a/snippets/monitor/waitcall.c
+++ b/snippets/monitor/waitcall.c
@@ -180,7 +180,7 @@ int main(int argc, char *argv[]) {
        
         /* Set up so that we get notified of incoming calls, if supported by 
the driver */
        gn_data_clear(&data);
-       data.call_notification = notify_call;
+       state->callbacks.call_notification = notify_call;
        error = gn_sm_functions(GN_OP_SetCallNotification, &data, state);
        notify = (error == GN_ERR_NONE ? 1 : 0);
        

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

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


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



reply via email to

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