Switch to unified view

a/src/upmpdutils.cxx b/src/upmpdutils.cxx
...
...
221
string wrapDIDL(const std::string& data)
221
string wrapDIDL(const std::string& data)
222
{
222
{
223
    return headDIDL() + data + tailDIDL();
223
    return headDIDL() + data + tailDIDL();
224
}
224
}
225
225
226
// Bogus didl fragment maker. We probably don't need a full-blown XML
227
// helper here
228
string didlmake(const UpSong& song)
226
string didlmake(const UpSong& song)
229
{
227
{
230
    return wrapDIDL(song.didl());
228
    return wrapDIDL(song.didl());
231
}
229
}
232
230