* etags.c (Ada_funcs): Redo slightly to avoid overflow warning.
[bpt/emacs.git] / lib-src / etags.c
index 0c14a0d..6cb321f 100644 (file)
@@ -4198,7 +4198,7 @@ Ada_funcs (FILE *inf)
          /* Skip a string i.e. "abcd". */
          if (inquote || (*dbp == '"'))
            {
-             dbp = etags_strchr ((inquote) ? dbp : dbp+1, '"');
+             dbp = etags_strchr (dbp + !inquote, '"');
              if (dbp != NULL)
                {
                  inquote = FALSE;