Skip to content

Commit

Permalink
Fix copy/paste error in mythutils jobutils.
Browse files Browse the repository at this point in the history
This corrects an additional error missed by 6d5e27b.
  • Loading branch information
wagnerrp committed Sep 5, 2012
1 parent 6d5e27b commit f19db66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythutil/jobutils.cpp
Expand Up @@ -33,7 +33,7 @@ static int QueueJob(const MythUtilCommandLineParser &cmdline)
jobType = JOB_USERJOB1;
else if (cmdline.toString("queuejob") == "userjob2")
jobType = JOB_USERJOB2;
else if (cmdline.toString("queuejob") == "userjob4")
else if (cmdline.toString("queuejob") == "userjob3")
jobType = JOB_USERJOB3;
else if (cmdline.toString("queuejob") == "userjob4")
jobType = JOB_USERJOB4;
Expand Down

0 comments on commit f19db66

Please sign in to comment.