From 7063f0aefd8a8c3c8b610ef6168cddfb2141fa12 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Thu, 24 Nov 2022 15:53:40 -0500 Subject: mig: replace boolean.h with stdbool.h Message-Id: --- user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user.c') diff --git a/user.c b/user.c index 886198b..a189e75 100644 --- a/user.c +++ b/user.c @@ -378,7 +378,7 @@ WritePackArgType(FILE *file, const argument_t *arg) { WritePackMsgType(file, arg->argType, arg->argType->itIndefinite ? d_NO : arg->argDeallocate, - arg->argLongForm, TRUE, + arg->argLongForm, true, "InP->%s", "%s", arg->argTTName); fprintf(file, "\n"); } @@ -874,7 +874,7 @@ WriteCheckMsgSize(FILE *file, const argument_t *arg) then we must check for exact msg-size and we don't need to update msgh_size. */ - boolean_t LastVarArg = arg->argReplyPos+1 == rt->rtNumReplyVar; + bool LastVarArg = arg->argReplyPos+1 == rt->rtNumReplyVar; /* calculate the actual size in bytes of the data field. note that this quantity must be a multiple of word_size. hence, if -- cgit v1.2.3