]> andersk Git - splint.git/commitdiff
Fixed type error causing a seg fault.
authordrl7x <drl7x>
Fri, 28 Mar 2003 19:23:19 +0000 (19:23 +0000)
committerdrl7x <drl7x>
Fri, 28 Mar 2003 19:23:19 +0000 (19:23 +0000)
doc/Makefile.am
doc/Makefile.in
src/mtscanner.c

index 4f76b6aa170610748e521cdf628d8d8567a69024..f1d05f7ace2ee6b4c88f7f7cb042e6fbc932d7c9 100644 (file)
@@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = 1.5 foreign
 #this is just a hack to get make dist to work.
 
 ## Include them in the distribution
-EXTRA_DIST = splint.1 freebsd.html linux.html sunos.html manual.doc faq.txt realloc.doc
+EXTRA_DIST = splint.1 freebsd.html linux.html sunos.html manual.pdf faq.txt manual.css html/manual.htm html/footer.html html/header.html html/realloc.htm
 
 man_MANS = splint.1 
 
index b54f43794a9ed119f4d59801e0f1e685f2a7c3cd..9a05c667276ed3912c234d4be060e6d3d413b429 100644 (file)
@@ -99,7 +99,7 @@ AUTOMAKE_OPTIONS = 1.5 foreign
 
 
 #this is just a hack to get make dist to work.
-EXTRA_DIST = splint.1 freebsd.html linux.html sunos.html manual.doc faq.txt realloc.doc
+EXTRA_DIST = splint.1 freebsd.html linux.html sunos.html manual.pdf faq.txt manual.css html/manual.htm html/footer.html html/header.html html/realloc.htm
 
 man_MANS = splint.1 
 subdir = doc
@@ -172,6 +172,7 @@ top_distdir = ..
 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
 
 distdir: $(DISTFILES)
+       $(mkinstalldirs) $(distdir)/html
        @list='$(DISTFILES)'; for file in $$list; do \
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
index d352c65f193f72ac485294f0a2eebddf7ba03def..b13a09abfc7dfe2d58221a87c34c581e65870aaf 100644 (file)
@@ -307,7 +307,7 @@ ctype mtscanner_lookupType (mttok tok)
   else
     {
       ctype ct;
-      ue = uentry_makeDatatype (tname, ctype_unknown, MAYBE, QU_UNKNOWN,
+      ue = uentry_makeDatatype (tname, ctype_unknown, MAYBE, qual_createUnknown(),
                                mttok_stealLoc (tok));
       DPRINTF (("Making mts entry: %s", uentry_unparse (ue)));
       ct = usymtab_supForwardTypeEntry (ue);
This page took 0.049219 seconds and 5 git commands to generate.