From: Roland McGrath Date: Sat, 22 Jun 1996 19:30:04 +0000 (+0000) Subject: Wed May 15 17:37:26 1996 Roland McGrath X-Git-Tag: 3.74.5~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dac23b2d0b9a089a2ddb874f8c2f78e9fb9cef6f;p=thirdparty%2Fmake.git Wed May 15 17:37:26 1996 Roland McGrath * dir.c (print_dir_data_base): Use %ld dev and ino and cast them to long. --- diff --git a/dir.c b/dir.c index d9977621..11343dd5 100644 --- a/dir.c +++ b/dir.c @@ -785,8 +785,9 @@ print_dir_data_base () dir->contents->ino[0], dir->contents->ino[1], dir->contents->ino[2]); #else - printf ("# %s (device %d, inode %d): could not be opened.\n", - dir->name, dir->contents->dev, dir->contents->ino); + printf ("# %s (device %ld, inode %ld): could not be opened.\n", + dir->name, (long int) dir->contents->dev, + (long int) dir->contents->ino); #endif #endif /* WIN32 */ else