- Notifications
You must be signed in to change notification settings - Fork23
Open
Description
A no brainer:
In file included from /usr/pkgmk/work/glyrc/src/glyrc/src/glyrc/autohelp.c:23: /usr/pkgmk/work/glyrc/src/glyrc/src/glyrc/../../lib/glyr.h:20:9: warning: 'GLYR_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]#ifndef GLYR_H ^~~~~~ /usr/pkgmk/work/glyrc/src/glyrc/src/glyrc/../../lib/glyr.h:21:9: note: 'GLYR_GLYR_H' is defined here; did you mean 'GLYR_H'?#define GLYR_GLYR_H ^~~~~~~~~~~ GLYR_H 1 warning generated.
This diff fixes that problem
diff --git a/lib/glyr.h b/lib/glyr.hindex 7416c38..2d06309 100644--- a/lib/glyr.h+++ b/lib/glyr.h@@ -18,7 +18,7 @@ * along with glyr. If not, see <http://www.gnu.org/licenses/>. **************************************************************/ #ifndef GLYR_H-#define GLYR_GLYR_H+#define GLYR_H /** * SECTION:glyr
Metadata
Metadata
Assignees
Labels
No labels