From 9dd2b0eee4a4788c81dff4e551f60b5342c9d184 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 30 Oct 2004 18:48:31 +0000 Subject: [PATCH] The PRId64 check was wrong, causing bootstrapping failures on FreeBSD-4.x boxes. --- usr.bin/gzip/gzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/gzip/gzip.c b/usr.bin/gzip/gzip.c index a05a43bd4c..0e29873930 100644 --- a/usr.bin/gzip/gzip.c +++ b/usr.bin/gzip/gzip.c @@ -1,5 +1,5 @@ /* $NetBSD: gzip.c,v 1.67 2004/09/11 11:07:44 dsl Exp $ */ -/* $DragonFly: src/usr.bin/gzip/gzip.c,v 1.2 2004/10/27 16:31:06 joerg Exp $ */ +/* $DragonFly: src/usr.bin/gzip/gzip.c,v 1.3 2004/10/30 18:48:31 dillon Exp $ */ /* * Copyright (c) 1997, 1998, 2003, 2004 Matthew R. Green @@ -64,7 +64,7 @@ #define PRIdOFF PRId64 #endif -#ifndef PRIdOFF +#ifndef PRId64 #define PRId64 "lld" #endif -- 2.41.0