Array Code Format

Maybe this is not the best place to ask, but how do I change the default array format of:

const unsigned char rcTempSet[4} = {
    0x82,
    0x00,
    0x87,
    0x00,
};

to single line?

const unsigned char rcTempSet[4] = { 0x82,0x00,0x87,0x00,}

Thanks!

JS