diff options
| author | Carlos MartÃn Nieto <[email protected]> | 2019-01-02 22:33:10 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-01-02 22:33:10 +0100 |
| commit | 69175cb426cdb267609b6ede866abf4cc5e86504 (patch) | |
| tree | 80e6ced86fc88ae3335903739b381ae132b389ba /config.go | |
| parent | 8b368063e958f421ca973b49fb71a092b696cf92 (diff) | |
| parent | e0ad45065e7ae240cba5fa0a3cbe5c2ee1df85f7 (diff) | |
Merge pull request #469 from praveentiru/pty/issue#256
Remove unused parameter in OpenOndisk #256
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -344,7 +344,7 @@ func (c *Config) OpenLevel(parent *Config, level ConfigLevel) (*Config, error) { } // OpenOndisk creates a new config instance containing a single on-disk file -func OpenOndisk(parent *Config, path string) (*Config, error) { +func OpenOndisk(path string) (*Config, error) { cpath := C.CString(path) defer C.free(unsafe.Pointer(cpath)) |
