X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgbsearcharray.h;h=98822cbc7c4a6e498da8d5acb060cca749b37587;hb=147c398cd05d71fb172d3788b9dc576c67141811;hp=1ad893c4ac3c508c217c3d5f2e6e83108a54b8ba;hpb=5e3c122e6c1fb35ed1a2cb0b76e62a519251fb33;p=platform%2Fupstream%2Fglib2.0.git diff --git a/glib/gbsearcharray.h b/glib/gbsearcharray.h index 1ad893c..98822cb 100644 --- a/glib/gbsearcharray.h +++ b/glib/gbsearcharray.h @@ -30,7 +30,7 @@ G_BEGIN_DECLS /* c++ guards */ * implementation needs to be self-contained within this file. */ -/* convenience macro to avoid signed overflow for value comparisions */ +/* convenience macro to avoid signed overflow for value comparisons */ #define G_BSEARCH_ARRAY_CMP(v1,v2) ((v1) > (v2) ? +1 : (v1) == (v2) ? 0 : -1)