Use actual enum values in tag table sentinel to avoid int/enum mismatch

- tagLoadIndex() looks for NULL in tag name, the other values aren't
  looked at so it doesn't matter...
This commit is contained in:
Panu Matilainen 2010-09-21 15:25:53 +03:00
parent 8b7ff12b4e
commit 4b06c4995d
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ ${AWK} '/[\t ](RPMTAG_[A-Z0-9]*)[ \t]+([0-9]*)/ && !/internal/ && !/unimplemente
}' < $1 | sort
cat << EOF
{ NULL, NULL, 0, 0, 0 }
{ NULL, NULL, RPMTAG_NOT_FOUND, RPM_NULL_TYPE, 0 }
};
EOF