From ddeef8c87548a57356ec72c3ed6d277c916330c7 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 18 Jul 2022 15:13:47 -0600 Subject: [PATCH] [test-ot-glyphname] Fix return value --- src/test-ot-glyphname.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test-ot-glyphname.cc b/src/test-ot-glyphname.cc index 50d023166..ec6e149a5 100644 --- a/src/test-ot-glyphname.cc +++ b/src/test-ot-glyphname.cc @@ -85,5 +85,5 @@ main (int argc, char **argv) hb_font_destroy (font); hb_face_destroy (face); - return result; + return !result; }