From 7a8a678033a7c209ce11db531bb7dfcf6f5743ee Mon Sep 17 00:00:00 2001 From: obarun <eric@obarun.org> Date: Tue, 3 Sep 2019 17:17:29 +1100 Subject: [PATCH] be able to be negative at cname.name --- src/include/66/parser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/66/parser.h b/src/include/66/parser.h index 00a7c83a..505b782c 100644 --- a/src/include/66/parser.h +++ b/src/include/66/parser.h @@ -103,7 +103,7 @@ typedef struct sv_name_s sv_name_t, *sv_name_t_ref ; struct sv_name_s { int itype ;/**int type =30->classic,31->bundle,32->longrun,33->oneshot*/ - unsigned int name ;//pos in keep + int name ;//pos in keep unsigned int description ;//pos in keep unsigned int idga ; //pos in genalloc gadeps unsigned int nga ; //len of idga in genalloc gadeps @@ -185,7 +185,7 @@ struct sv_alltype_s #define SV_NAME_ZERO \ { \ -1 ,\ - 0 ,\ + -1 ,\ 0 ,\ 0 ,\ 0 ,\ -- GitLab