Skip to content
Snippets Groups Projects
Commit 23ce49ea authored by Rolf Bork's avatar Rolf Bork
Browse files

Added forced cast of output to unsigned int type.

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@3664 6dcd42c9-f523-4c6d-aada-af552506706e
parent 22f83475
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ sub frontEndCode {
my ($i) = @_;
#print "Found EPICS OUTPUT $::xpartName[$i] $::partInputType[$i][0] in loop\n";
my $ret = "// EpicsOutInt: $::xpartName[$i]\n";
$ret .= "pLocalEpics->$::systemName\.$::xpartName[$i] = ";
$ret .= "pLocalEpics->$::systemName\.$::xpartName[$i] = (unsigned int)";
$ret .= "$::fromExp[0];\n";
return $ret;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment