diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-10-18 07:26:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-10-18 07:26:43 +0000 |
commit | fdef58468100d1a9b6b7f6769f8dbab5d6ff3b23 (patch) | |
tree | b98c1010424295a2a171008a4688a5f8b07f57cc | |
parent | f335bac8a38e816c4243474d7c7d186638d3aab4 (diff) |
Mohun Biswas' suggested change to prevent GNU indent to warn on the =-1 line.
-rw-r--r-- | include/curl/multi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index fe34a423d..d940571a2 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -91,7 +91,7 @@ typedef int curl_socket_t; #endif /* HAVE_CURL_MULTI_SOCKET */ typedef enum { - CURLM_CALL_MULTI_PERFORM=-1, /* please call curl_multi_perform() soon */ + CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() soon */ CURLM_OK, CURLM_BAD_HANDLE, /* the passed-in handle is not a valid CURLM handle */ CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */ |