diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-03-01 18:06:07 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-03-01 18:14:16 +0000 |
commit | 36802d6e0c402969cb64ef9dd0d0b799165198d8 (patch) | |
tree | 76e519d558c2144c0d508036c6e85c6f953a934f /src | |
parent | f1a9e6858e6f2cd7ff54eac79df02640f0624a2a (diff) |
tool_operate.c: Fixed compilation error
incompatible types - from 'OperationConfig *' to 'GlobalConfig *'
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 2eeb51acf..8e1b1a58d 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1773,7 +1773,7 @@ static CURLcode operate_do(struct GlobalConfig *global, /* Dump the libcurl code if previously enabled. NOTE: that this function relies on config->errors amongst other things so not everything can be closed and cleaned before this is called */ - dumpeasysrc(config); + dumpeasysrc(global); #endif /* Release metalink related resources here */ |