--- src/usr.bin/systat/convtbl.h 2003/11/08 09:30:32 1.1 +++ src/usr.bin/systat/convtbl.h 2008/11/10 04:59:45 1.2 @@ -56,13 +56,13 @@ struct convtbl { u_int mul; u_int scale; - char *str; + const char *str; }; extern struct convtbl convtbl[]; extern double convert(const u_long, const u_int); -extern char *get_string(const u_long, const u_int); +extern const char *get_string(const u_long, const u_int); #endif /* ! _CONVTBL_H_ */ /* @@ -92,7 +92,7 @@ extern char *get_string(const u_long, co * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: convtbl.h,v 1.1 2003/11/08 09:30:32 asmodai Exp $ + * $Id: convtbl.h,v 1.2 2008/11/10 04:59:45 swildner Exp $ */ #ifndef _CONVTBL_H_