Compile-Warnings mit ADEOS behoben.

This commit is contained in:
Florian Pose 2006-02-24 13:14:21 +00:00
parent 59782cc7be
commit 4b24372bb2
2 changed files with 10 additions and 10 deletions

View File

@ -136,12 +136,12 @@
#include "../include/EtherCAT_dev.h"
#define LIT(X) #X
#define STR(X) LIT(X)
#define EC_LIT(X) #X
#define EC_STR(X) EC_LIT(X)
#define COMPILE_INFO "Revision " STR(EC_REV) \
", compiled by " STR(EC_USER) \
" at " STR(EC_DATE)
#define COMPILE_INFO "Revision " EC_STR(EC_REV) \
", compiled by " EC_STR(EC_USER) \
" at " EC_STR(EC_DATE)
/* EtherCAT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

View File

@ -32,12 +32,12 @@ void __exit ec_cleanup_module(void);
/*****************************************************************************/
#define LIT(X) #X
#define STR(X) LIT(X)
#define EC_LIT(X) #X
#define EC_STR(X) EC_LIT(X)
#define COMPILE_INFO "Revision " STR(EC_REV) \
", compiled by " STR(EC_USER) \
" at " STR(EC_DATE)
#define COMPILE_INFO "Revision " EC_STR(EC_REV) \
", compiled by " EC_STR(EC_USER) \
" at " EC_STR(EC_DATE)
/*****************************************************************************/