X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fval.h;h=96523de28bf5abdab08ddaf9bbdecdc9c0269ed4;hb=1f053e35b27208cad9bec322c67ba4ef022c1dc1;hp=c90cd19867f577ea2c2fa5fef9113135b243da4b;hpb=e976a0fa28771a625ba29b86cc5883838d0f1c70;p=pspp-builds.git diff --git a/src/val.h b/src/val.h index c90cd198..96523de2 100644 --- a/src/val.h +++ b/src/val.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !val_h #define val_h 1 @@ -36,8 +36,8 @@ then short string missing values can be truncated in system files because there's only room for as many characters as can fit in a flt64. */ -#if MAX_SHORT_STRING > 8 -#error MAX_SHORT_STRING must be less than 8. +#if MAX_SHORT_STRING > SHORT_NAME_LEN +#error MAX_SHORT_STRING must be less than or equal to SHORT_NAME_LEN. #endif /* Special values. */ @@ -73,4 +73,5 @@ int compare_values (const union value *a, const union value *b, int width); unsigned hash_value(const union value *v, int width); + #endif /* !val_h */