From 23b4b5706c45c9157c9c02e14946bc19bb60a8c5 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 27 Jul 2018 18:31:52 +0800 Subject: [PATCH] express change in the format of a quilt patch --- debian/patches/series | 1 + debian/patches/update_sizebuf_types.patch | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 debian/patches/update_sizebuf_types.patch diff --git a/debian/patches/series b/debian/patches/series index 55dcc4b..f548d03 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -4,3 +4,4 @@ as31-mkstemps.patch as31-fix-duplicate-line.patch update-version helptext +update_sizebuf_types.patch diff --git a/debian/patches/update_sizebuf_types.patch b/debian/patches/update_sizebuf_types.patch new file mode 100644 index 0000000..6712ad9 --- /dev/null +++ b/debian/patches/update_sizebuf_types.patch @@ -0,0 +1,17 @@ +diff --git a/as31/run.c b/as31/run.c +index 9e5263b..6010ee8 100644 +--- a/as31/run.c ++++ b/as31/run.c +@@ -34,10 +34,10 @@ int run_as31(const char *infile, int lst, int use_stdout, + FILE* finPre; + char tmpName[256]; + char *lineBuffer=NULL; +- int sizeBuf=0; ++ long unsigned int sizeBuf=0; + char *includePtr=NULL; + char *incLineBuffer=NULL; +- int incSizeBuf=0; ++ long unsigned int incSizeBuf=0; + FILE* includeFile=NULL; + int fd; + -- 2.30.2