aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fb
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-07-01 20:01:03 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-07-01 20:01:03 +0000
commite240133cfabcc10c11b4e7cf8aa218ffda425b14 (patch)
tree780ff9666af448e06b9e6b22e8b8a153cbe94ec4 /sys/dev/fb
parent96f31ff8720b50fb56969077429294ea2c5ffbde (diff)
downloadsrc-e240133cfabcc10c11b4e7cf8aa218ffda425b14.tar.gz
src-e240133cfabcc10c11b4e7cf8aa218ffda425b14.zip
Fix printf int/long format problems on the Alpha.
Notes
Notes: svn path=/head/; revision=48412
Diffstat (limited to 'sys/dev/fb')
-rw-r--r--sys/dev/fb/splash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/fb/splash.c b/sys/dev/fb/splash.c
index 40f1d01a5585..6a6dce0fc4f3 100644
--- a/sys/dev/fb/splash.c
+++ b/sys/dev/fb/splash.c
@@ -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;
}