diff options
author | Neelesh Chandola <neelesh.chandola@outlook.com> | 2018-12-09 10:35:30 +0530 |
---|---|---|
committer | Neelesh Chandola <neelesh.chandola@outlook.com> | 2018-12-09 10:35:30 +0530 |
commit | abdfbd07a5a4c63456c4bfa2823ee3ebc25dda8f (patch) | |
tree | b12f83136b90abfd9faad89e0a9cc5c3df0445e3 /lib | |
parent | 7a66616d741106d4c18ce2e8f843a8b5d31f6025 (diff) | |
download | Nim-abdfbd07a5a4c63456c4bfa2823ee3ebc25dda8f.tar.gz |
Fixes #9907
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/includes/oserr.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/includes/oserr.nim b/lib/pure/includes/oserr.nim index 72c3f4f49..45066e443 100644 --- a/lib/pure/includes/oserr.nim +++ b/lib/pure/includes/oserr.nim @@ -59,7 +59,7 @@ proc raiseOSError*(errorCode: OSErrorCode; additionalInfo = "") {.noinline.} = e.errorCode = errorCode.int32 e.msg = osErrorMsg(errorCode) if additionalInfo.len > 0: - e.msg.add "; Additional info: " + e.msg.add "Additional info: " e.msg.addQuoted additionalInfo if e.msg == "": e.msg = "unknown OS error" |