summaryrefslogtreecommitdiffstats
path: root/crypto/mem.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-04-17 21:25:43 +0000
committerBen Laurie <ben@openssl.org>1999-04-17 21:25:43 +0000
commite778802f53c8d47e96a6e4cbc776eb6e1d4c461a (patch)
tree719d4dd0fc69b355c6d8329af1f90b2c4f603548 /crypto/mem.c
parentd77b3054cd87c2b13fa0169931f74b8e0dac5252 (diff)
Massive constification.
Diffstat (limited to 'crypto/mem.c')
-rw-r--r--crypto/mem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/mem.c b/crypto/mem.c
index ee115d78e6..f47ea6b4a2 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -76,7 +76,7 @@ typedef struct mem_st
{
char *addr;
int num;
- char *file;
+ const char *file;
int line;
unsigned long order;
} MEM;
@@ -206,7 +206,7 @@ void *str;
static unsigned long break_order_num=0;
void *CRYPTO_dbg_malloc(num,file,line)
int num;
-char *file;
+const char *file;
int line;
{
char *ret;
@@ -280,7 +280,7 @@ void *addr;
void *CRYPTO_dbg_realloc(addr,num,file,line)
void *addr;
int num;
-char *file;
+const char *file;
int line;
{
char *ret;
@@ -319,7 +319,7 @@ int n;
void *CRYPTO_dbg_remalloc(a,n,file,line)
void *a;
int n;
-char *file;
+const char *file;
int line;
{
if (a != NULL) CRYPTO_dbg_free(a);