From 0764df127643b32d97a6d73f63039a40bb40ba10 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Feb 2020 16:40:12 +0900 Subject: [PATCH] Fix incorrect include protection --- include/QF/Makefile.am | 2 +- include/QF/darray.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/QF/Makefile.am b/include/QF/Makefile.am index c0fda5cd1..bb6b0d2da 100644 --- a/include/QF/Makefile.am +++ b/include/QF/Makefile.am @@ -5,7 +5,7 @@ pkgdatadir = $(datarootdir)/qfcc/include/QF include_qf= \ alloc.h bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \ - console.h crc.h csqc.h cvar.h dstring.h draw.h gib.h hash.h \ + console.h crc.h csqc.h cvar.h darray.h dstring.h draw.h gib.h hash.h \ idparse.h image.h in_event.h info.h input.h iqm.h joystick.h keys.h \ link.h llist.h locs.h mathlib.h mdfour.h mersenne.h model.h modelgen.h \ msg.h object.h pak.h pakfile.h pcx.h png.h plugin.h pr_comp.h pr_debug.h \ diff --git a/include/QF/darray.h b/include/QF/darray.h index 88792715f..0287f958f 100644 --- a/include/QF/darray.h +++ b/include/QF/darray.h @@ -28,8 +28,8 @@ */ -#ifndef __pr_type_h -#define __pr_type_h +#ifndef __darray_h +#define __darray_h /** \defgroup darray Dynamic Arrays \ingroup utils @@ -298,4 +298,4 @@ ///@} -#endif//__pr_type_h +#endif//__darray_h