aboutsummaryrefslogtreecommitdiffstats
path: root/solc
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-03-17 07:59:36 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-17 07:59:36 +0800
commite0ff70778a3de88e25cc4c4f879799d6b73a4a61 (patch)
treed8e609aedf87c4063c2f6ffc488b75881069e962 /solc
parent58334cf4ac1cf61e5296b82ada48a2eb690ed369 (diff)
downloaddexon-solidity-e0ff70778a3de88e25cc4c4f879799d6b73a4a61.tar.gz
dexon-solidity-e0ff70778a3de88e25cc4c4f879799d6b73a4a61.tar.zst
dexon-solidity-e0ff70778a3de88e25cc4c4f879799d6b73a4a61.zip
Rename ErrorMesage to ErrorMessage
Diffstat (limited to 'solc')
-rw-r--r--solc/jsonCompiler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/solc/jsonCompiler.cpp b/solc/jsonCompiler.cpp
index 6ebd1a55..45322117 100644
--- a/solc/jsonCompiler.cpp
+++ b/solc/jsonCompiler.cpp
@@ -143,18 +143,18 @@ string compile(StringMap const& _sources, bool _optimize, CStyleReadFileCallback
if (!contents_c && !error_c)
{
result.success = false;
- result.contentsOrErrorMesage = "File not found.";
+ result.contentsOrErrorMessage = "File not found.";
}
if (contents_c)
{
result.success = true;
- result.contentsOrErrorMesage = string(contents_c);
+ result.contentsOrErrorMessage = string(contents_c);
free(contents_c);
}
if (error_c)
{
result.success = false;
- result.contentsOrErrorMesage = string(error_c);
+ result.contentsOrErrorMessage = string(error_c);
free(error_c);
}
return result;