Fix printf int/long format problems on the Alpha.

This commit is contained in:
Peter Wemm 1999-07-01 20:01:03 +00:00
parent 96f31ff872
commit e240133cfa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48412

View File

@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: splash.c,v 1.2 1999/01/11 03:06:28 yokota Exp $
* $Id: splash.c,v 1.4 1999/06/22 14:13:24 yokota Exp $
*/
#include "splash.h"
@ -73,8 +73,8 @@ splash_find_data(splash_decoder_t *decoder)
return ENOENT;
decoder->data_size = *(size_t *)p;
if (bootverbose)
printf("splash: image@%p, size:%u\n",
decoder->data, decoder->data_size);
printf("splash: image@%p, size:%lu\n",
(void *)decoder->data, (long)decoder->data_size);
return 0;
}