Skip to content
Snippets Groups Projects
Commit 91b42174 authored by Max Avruch's avatar Max Avruch
Browse files

Bug 1292:

 fixed typo (&& to &) in getMode
parent 2365b053
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ namespace LOFAR {
m_modified |= MODE_MASK;
}
int getMode(uint32 rawMode) {
switch (m_value && MODE_MASK) {
switch (m_value & MODE_MASK) {
case 0x00000000: return(0);
case 0x00017900: return(1);
case 0x00057900: return(2);
......
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