Code review comment for lp:~smspillaz/compiz-core/compiz-core.lim

Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

If we're trying to be cryptic...

   gboolean empty = g_strcmp0 (entry_id, "") == 0;

can be written:

   gboolean empty = !entry_id || !*entry_id;

« Back to merge proposal