]> granicus.if.org Git - flex/commitdiff
Fix warning on assigning from `const char*` to `char*`
authorMariusz Pluciński <mplucinski@mplucinski.com>
Fri, 25 Jul 2014 13:10:48 +0000 (15:10 +0200)
committerWill Estes <westes575@gmail.com>
Fri, 25 Jul 2014 13:48:16 +0000 (09:48 -0400)
src/buf.c

index e5deb4e81c3a78e0ac3f93d4545f554c3f97a401..a9284ceeb6477fe47f8d38e5e4eb87aae5766551 100644 (file)
--- a/src/buf.c
+++ b/src/buf.c
@@ -90,7 +90,8 @@ struct Buf *buf_prints (struct Buf *buf, const char *fmt, const char *s)
  */
 struct Buf *buf_linedir (struct Buf *buf, const char* filename, int lineno)
 {
-    char *dst, *src, *t;
+    char *dst, *t;
+    const char* src;
 
     t = flex_alloc (strlen ("#line \"\"\n")          +   /* constant parts */
                     2 * strlen (filename)            +   /* filename with possibly all backslashes escaped */