Browse Source

Stray semicolon

Source commit: 66cf8061df3d37985236b20dbd6853bce804d0d0
Martin Prikryl 4 years ago
parent
commit
921029aacb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/filezilla/FtpListResult.cpp

+ 1 - 1
source/filezilla/FtpListResult.cpp

@@ -774,7 +774,7 @@ void CFtpListResult::AddLine(t_directory::t_direntry &direntry)
   { //Remove version information, only keep the latest file
     int pos=direntry.name.ReverseFind(L';');
     if (pos<=0 || pos>=(direntry.name.GetLength()-1))
-      return;;
+      return;
     int version=_ttoi(direntry.name.Mid(pos+1));
     direntry.name=direntry.name.Left(pos);