Skip to content

Commit

Permalink
Fixed typo in previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Schlamelcher authored and Jan Schlamelcher committed May 6, 2021
1 parent 96070b7 commit 2086f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ofstd/libsrc/offilsys.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void OFpath::convertSeparator( format fmt )
pos = m_NativeString.find( '/' );
if( pos == OFString_npos )
return;
break:
break;
}
m_NativeString[pos] = preferred_separator;
for( pos = m_NativeString.find( '/', pos + 1 ); pos != OFString_npos; pos = m_NativeString.find( '/', pos + 1 ) )
Expand Down

0 comments on commit 2086f95

Please sign in to comment.