[Pcsclite-cvs-commit] CVS PCSC/src/PCSC

CVS User rousseau ludovic.rousseau@free.fr
Wed, 23 Feb 2005 02:46:12 -0700


Update of /cvsroot/pcsclite/PCSC/src/PCSC
In directory haydn:/tmp/cvs-serv7798

Modified Files:
	debuglog.h 
Log Message:
use "const int" instead of "int" for priority


--- /cvsroot/pcsclite/PCSC/src/PCSC/debuglog.h	2005/02/22 14:20:19	1.14
+++ /cvsroot/pcsclite/PCSC/src/PCSC/debuglog.h	2005/02/23 09:46:11	1.15
@@ -7,7 +7,7 @@
  *  David Corcoran <corcoran@linuxnet.com>
  *  Ludovic Rousseau <ludovic.rousseau@free.fr>
  *
- * $Id: debuglog.h,v 1.14 2005/02/22 14:20:19 rousseau Exp $
+ * $Id: debuglog.h,v 1.15 2005/02/23 09:46:11 rousseau Exp $
  */
 
 /*
@@ -73,8 +73,8 @@
 #define DebugLogB(a, b) Log2(PCSC_LOG_INFO, a, b)
 #define DebugLogC(a, b,c) Log3(PCSC_LOG_INFO, a, b, c)
 
-void log_msg(int priority, const char *fmt, ...);
-void log_xxd(int priority, const char *msg, const unsigned char *buffer,
+void log_msg(const int priority, const char *fmt, ...);
+void log_xxd(const int priority, const char *msg, const unsigned char *buffer,
 	const int size);
 
 void DebugLogSuppress(const int);