mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: bring back panic(err.msg)
-> panic(err)
(#9022)
This commit is contained in:
@ -56,7 +56,7 @@ fn (mut dtp DTP) read() ?[]byte {
|
||||
}
|
||||
|
||||
fn (mut dtp DTP) close() {
|
||||
dtp.conn.close() or { panic(err.msg) }
|
||||
dtp.conn.close() or { panic(err) }
|
||||
}
|
||||
|
||||
struct FTP {
|
||||
|
Reference in New Issue
Block a user