Skip to content
Snippets Groups Projects
Commit eeaeeeee authored by Xavier ELATTAOUI's avatar Xavier ELATTAOUI
Browse files

Windows activation deleted in pom file.

parent 88bd204c
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
</parent>
<groupId>fr.soleil.device</groupId>
<artifactId>LoCuM_4-${aol}-${mode}</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.2.2</version>
<packaging>nar</packaging>
<name>LoCuM_4</name>
<description>LoCuM_4 device</description>
......@@ -17,9 +17,6 @@
<plugin>
<groupId>org.freehep</groupId>
<artifactId>freehep-nar-plugin</artifactId>
<configuration>
<os>Windows</os>
</configuration>
</plugin>
</plugins>
</build>
......
......@@ -770,14 +770,14 @@ Tango::DevString LoCuM_4::send_locum4_command(Tango::DevString argin)
//-DEBUG_STREAM << "LoCuM_4::get_range::range token: " << range << std::endl;
unsigned int i = 0;
int c = '0';
while (::isdigit(unsigned char(c)) && i < range.size())
while (::isdigit((unsigned char)c) && i < range.size())
c = range[++i];
//-DEBUG_STREAM << "LoCuM_4::get_range::range token:first non-digit char" << c << std::endl;
//-DEBUG_STREAM << "LoCuM_4::get_range::range token:first non-digit char location" << i << std::endl;
if (c != 'm' && c != 'n' && c != 'p')
{
c = 'u';
range[i] = unsigned char(c);
range[i] = (unsigned char)(c);
}
//-DEBUG_STREAM << "LoCuM_4::get_range::range token:modified str:" << range << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment