time-config: fix warning on no-effect conditional

operator<< (for iostream) has higher precidence than terinary
operator.  Therefore, 'cout << foo ? 1 : 2' would be evaluated
as '(cout << foo) ? 1 : 2' which is always true.

Add parens to ensure the correct evaluation order.

Change-Id: I24ce991ec934c35ca2b244677cacb1a5a738ad76
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
1 file changed