Skip to content

Commit

Permalink
Replace etl::filename_extension() call
Browse files Browse the repository at this point in the history
  • Loading branch information
eldruin committed Mar 13, 2015
1 parent a4ec48b commit 94de2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synfig-core/src/tool/joblistprocessor.cpp
Expand Up @@ -89,7 +89,7 @@ bool setup_job(Job& job, const TargetParam& target_parameters)
{
VERBOSE_OUT(3) << _("Target name undefined, attempting to figure it out")
<< std::endl;
std::string ext = etl::filename_extension(job.outfilename);
std::string ext = bfs::path(job.outfilename).extension().string();
if (ext.length())
ext = ext.substr(1);

Expand Down

0 comments on commit 94de2f3

Please sign in to comment.