Module Name:    src
Committed By:   christos
Date:           Wed May 20 16:20:01 UTC 2009

Modified Files:
        src/usr.bin/ldd: ldd.c

Log Message:
catch up with rtld changes


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/ldd/ldd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/ldd/ldd.c
diff -u src/usr.bin/ldd/ldd.c:1.5 src/usr.bin/ldd/ldd.c:1.6
--- src/usr.bin/ldd/ldd.c:1.5	Mon Feb  2 22:01:02 2009
+++ src/usr.bin/ldd/ldd.c	Wed May 20 12:20:01 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ldd.c,v 1.5 2009/02/03 03:01:02 mrg Exp $	*/
+/*	$NetBSD: ldd.c,v 1.6 2009/05/20 16:20:01 christos Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: ldd.c,v 1.5 2009/02/03 03:01:02 mrg Exp $");
+__RCSID("$NetBSD: ldd.c,v 1.6 2009/05/20 16:20:01 christos Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -94,7 +94,7 @@
 Obj_Entry **_rtld_objtail = &_rtld_objlist;
 				/* Link field of last object in list */
 Obj_Entry *_rtld_objmain;	/* The main program shared object */
-int _rtld_pagesz;
+unsigned int _rtld_pagesz;
 
 Search_Path *_rtld_default_paths;
 Search_Path *_rtld_paths;

Reply via email to