Switch to unified view

a/upmpd/ohinfo.cxx b/upmpd/ohinfo.cxx
...
...
121
    } else {
121
    } else {
122
        changed = diffmaps(m_state, state);
122
        changed = diffmaps(m_state, state);
123
    }
123
    }
124
    m_state = state;
124
    m_state = state;
125
125
126
    for (auto& member : changed) {
126
    for (auto it = changed.begin(); it != changed.end(); it++) {
127
        names.push_back(member.first);
127
        names.push_back(it->first);
128
        values.push_back(member.second);
128
        values.push_back(it->second);
129
    }
129
    }
130
130
131
    return true;
131
    return true;
132
}
132
}
133
133