From 653c0692b6e0d29848ae5dc88de2b67f9456361a Mon Sep 17 00:00:00 2001 From: OpenSceneGraph git repository Date: Thu, 12 Dec 2019 10:55:35 +0000 Subject: [PATCH] Fixed indentation, replacing tabs with spaces --- src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp b/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp index 24417a9eb..17175d0fa 100644 --- a/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp +++ b/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp @@ -136,7 +136,7 @@ public: { const std::string ext = osgDB::getLowerCaseFileExtension(filename); const std::string pro = osgDB::getServerProtocol(filename); - if (!acceptsExtension(ext) && !acceptsProtocol(pro)) return ReadResult::FILE_NOT_HANDLED; + if (!acceptsExtension(ext) && !acceptsProtocol(pro)) return ReadResult::FILE_NOT_HANDLED; if (ext=="ffmpeg") return readImage(osgDB::getNameLessExtension(filename),options);