From 3e975124f3c6524a20f0cdc545420ba1c84ac81d Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Fri, 31 May 2002 14:34:15 +0000 Subject: [PATCH] Fix a warning. --- crypto/evp/evp_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index 7c5453d7e9..1bfffb34cf 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -358,7 +358,7 @@ int main(int argc,char **argv) p[-1] = '\0'; encdec = -1; } else { - encdec = atoi(ustrsep(&p,"\n")); + encdec = atoi(strsep(&p,"\n")); } -- 2.25.1