1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

unused variable removed

This commit is contained in:
Luke Leighton 0001-01-01 00:00:00 +00:00
parent ba78b5932a
commit 16ac5c89b7

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;