Skip to content

Commit

Permalink
Cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
HolyWu committed Jun 8, 2015
1 parent a6bd7e0 commit 06b90c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Deblock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ static void VS_CC deblockCreate(const VSMap *in, VSMap *out, void *userData, VSC
d.bOffset = int64ToIntS(vsapi->propGetInt(in, "boffset", 0, &err));

if (d.quant < 0 || d.quant > QUANT_MAX) {
vsapi->setError(out, std::string("Deblock: quant must be between 0 and ").append(std::to_string(QUANT_MAX)).append(" inclusive").c_str());
vsapi->setError(out, std::string("Deblock: quant must be between 0 and ").append(std::to_string(QUANT_MAX)).append(" (inclusive)").c_str());
return;
}

Expand Down

0 comments on commit 06b90c1

Please sign in to comment.