You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.h
index 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
The text was updated successfully, but these errors were encountered:
A no brainer:
This diff fixes that problem
The text was updated successfully, but these errors were encountered: