Skip to content

Commit

Permalink
Merge pull request #1293 from dongahn/rfc_compliance
Browse files Browse the repository at this point in the history
jobspec: replace minus operator to multiplication
  • Loading branch information
morrone committed Nov 28, 2017
2 parents a2b1063 + ad747cf commit fab9d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/libjobspec/jobspec.cpp
Expand Up @@ -118,7 +118,7 @@ void parse_yaml_count (Resource& res, const YAML::Node &cnode)
res.count.oper = cnode["operator"].as<char>();
switch (res.count.oper) {
case '+':
case '-':
case '*':
case '^':
break;
default:
Expand Down

0 comments on commit fab9d9e

Please sign in to comment.