Justin P. Mattock <justinmattock@xxxxxxxxx> wrote: > a bit confused with the whole: "?:" though > *condition ? value if true : value if false* (what if both are true > what if both are false or does it matter?) If you say: cond ?: false_value then you'll get cond if cond is non-zero and false_value if it isn't. I suspect it's a gccism. David -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html