1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

unused variable removed

(This used to be commit 16ac5c89b7417a6aa2596c5c7fbb1fa7542accfd)
This commit is contained in:
Luke Leighton 1998-11-23 22:21:19 +00:00
parent eab235dd4a
commit 5694edcc31

View File

@ -1040,7 +1040,7 @@ Use with caution!
void all_string_sub(char *s,const char *pattern,const char *insert)
{
char *p;
size_t ls,lp,li, i;
size_t ls,lp,li;
if (!insert || !pattern || !s) return;