64-bit compatibility.

This commit is contained in:
Ron Sluiter
2008-12-10 18:31:38 +00:00
parent b7a1bcb1f7
commit a30d4de5d8
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -2,9 +2,9 @@
* FILENAME... devEnsemble.cc
* USAGE... Motor record device level support for Aerotech Ensemble.
*
* Version: $Revision: 1.4 $
* Version: $Revision: 1.5 $
* Modified By: $Author: sluiter $
* Last Modified: $Date: 2008-11-20 22:27:13 $
* Last Modified: $Date: 2008-12-10 18:30:46 $
*/
/*
@@ -114,7 +114,7 @@ static struct board_stat **Ensemble_cards;
static long Ensemble_init (void *arg)
{
long rtnval;
int after = (int) arg;
int after = (arg == 0) ? 0 : 1;
if (after == 0)
{
+1 -1
View File
@@ -108,7 +108,7 @@ static struct board_stat **PIE816_cards;
static long PIE816_init(void *arg)
{
long rtnval;
int after = (int) arg;
int after = (arg == 0) ? 0 : 1;
if (after == 0)
{