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-40


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-406-geacf911
Date: Tue, 05 Jun 2012 10:10:04 +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  eacf911533f2acf599b7ed0804ec4d2d8ed057ee (commit)
       via  2b65dc53aa9c194d73b05402a7ac5ce8046d65f0 (commit)
       via  990760706cfe2c5c8cb464648eefe389061815d0 (commit)
      from  13cbcf3eec7cfa168cbabd0d0f12494635307ac6 (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=eacf911533f2acf599b7ed0804ec4d2d8ed057ee


commit eacf911533f2acf599b7ed0804ec4d2d8ed057ee
Author: Daniele Forsi <address@hidden>
Date:   Mon Jun 4 21:31:02 2012 +0200

    Fix compilation warning
    
    Fixes:
    common/phones/pcsc.c:1509:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]
    common/phones/pcsc.c:1512:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]

diff --git a/common/phones/pcsc.c b/common/phones/pcsc.c
index 1b3c905..9e74f08 100644
--- a/common/phones/pcsc.c
+++ b/common/phones/pcsc.c
@@ -98,7 +98,8 @@ gn_driver driver_pcsc = {
 SCARDCONTEXT hContext;
 SCARDHANDLE hCard;
 DWORD dwActiveProtocol;
-SCARD_IO_REQUEST *pioSendPci, pioRecvPci;
+const SCARD_IO_REQUEST *pioSendPci;
+SCARD_IO_REQUEST pioRecvPci;
 BYTE buf[MAX_BUFFER_SIZE];
 PCSC_IOSTRUCT IoStruct = { buf, sizeof(buf), 0, 0 };
 

http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=2b65dc53aa9c194d73b05402a7ac5ce8046d65f0


commit eacf911533f2acf599b7ed0804ec4d2d8ed057ee
Author: Daniele Forsi <address@hidden>
Date:   Mon Jun 4 21:31:02 2012 +0200

    Fix compilation warning
    
    Fixes:
    common/phones/pcsc.c:1509:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]
    common/phones/pcsc.c:1512:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]

diff --git a/common/phones/pcsc.c b/common/phones/pcsc.c
index 1b3c905..9e74f08 100644
--- a/common/phones/pcsc.c
+++ b/common/phones/pcsc.c
@@ -98,7 +98,8 @@ gn_driver driver_pcsc = {
 SCARDCONTEXT hContext;
 SCARDHANDLE hCard;
 DWORD dwActiveProtocol;
-SCARD_IO_REQUEST *pioSendPci, pioRecvPci;
+const SCARD_IO_REQUEST *pioSendPci;
+SCARD_IO_REQUEST pioRecvPci;
 BYTE buf[MAX_BUFFER_SIZE];
 PCSC_IOSTRUCT IoStruct = { buf, sizeof(buf), 0, 0 };
 

http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=990760706cfe2c5c8cb464648eefe389061815d0


commit eacf911533f2acf599b7ed0804ec4d2d8ed057ee
Author: Daniele Forsi <address@hidden>
Date:   Mon Jun 4 21:31:02 2012 +0200

    Fix compilation warning
    
    Fixes:
    common/phones/pcsc.c:1509:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]
    common/phones/pcsc.c:1512:14: warning: assignment discards ‘const’ 
qualifier from pointer target type [enabled by default]

diff --git a/common/phones/pcsc.c b/common/phones/pcsc.c
index 1b3c905..9e74f08 100644
--- a/common/phones/pcsc.c
+++ b/common/phones/pcsc.c
@@ -98,7 +98,8 @@ gn_driver driver_pcsc = {
 SCARDCONTEXT hContext;
 SCARDHANDLE hCard;
 DWORD dwActiveProtocol;
-SCARD_IO_REQUEST *pioSendPci, pioRecvPci;
+const SCARD_IO_REQUEST *pioSendPci;
+SCARD_IO_REQUEST pioRecvPci;
 BYTE buf[MAX_BUFFER_SIZE];
 PCSC_IOSTRUCT IoStruct = { buf, sizeof(buf), 0, 0 };
 

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

Summary of changes:
 common/phones/pcsc.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

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