remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:09 +02:00
parent 299f967527
commit 3c1bb85b8e
50 changed files with 67 additions and 67 deletions

View File

@@ -53,7 +53,7 @@
void FileSetPos (FILE* F, unsigned long Pos)
/* Seek to the given absolute position, fail on errors */
{
{
if (fseek (F, Pos, SEEK_SET) != 0) {
Error ("Cannot seek: %s", strerror (errno));
}