Преглед изворни кода

Stray semicolon

Source commit: 66cf8061df3d37985236b20dbd6853bce804d0d0
Martin Prikryl пре 4 година
родитељ
комит
921029aacb
1 измењених фајлова са 1 додато и 1 уклоњено
  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);