1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

tdb:tdbstore.c - remove an useless '\'

Discovered by a warning of the Tru64 host on the buildfarm.
This commit is contained in:
Matthias Dieter Wallnöfer 2010-11-27 18:21:32 +01:00
parent caa8a92f52
commit d2560cd7dc

View File

@ -39,7 +39,7 @@ static int read_linehead(FILE *f)
if (c == EOF) {
return -1;
}
if (c == '\(') {
if (c == '(') {
break;
}
}