X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/61e09274bb3338efbd9c50f797751853c99dba3b..54bb586a278eb3e87f7a9b9d405cbc40dc2f9e34:/sbr/dtimep.l diff --git a/sbr/dtimep.l b/sbr/dtimep.l index bae6ac5c..05a6d90b 100644 --- a/sbr/dtimep.l +++ b/sbr/dtimep.l @@ -14,6 +14,12 @@ /* Since we're looking at a string at a time, don't worry about * wrapping to the next buffer. */ +#if YY_FLEX_MAJOR_VERSION == 2 && \ + YY_FLEX_MINOR_VERSION == 6 && \ + YY_FLEX_SUBMINOR_VERSION == 3 +/* https://github.com/westes/flex/issues/162 */ +#undef yywrap +#endif #define yywrap() 1 #define YY_SKIP_YYWRAP @@ -168,7 +174,7 @@ static int day_map[] = { static void zonehack (struct tws *tw) { - register struct tm *tm; + struct tm *tm; if (dmktime (tw) == (time_t) -1) return;