Commit 804e4623 authored by Steve Holme's avatar Steve Holme
Browse files

multi-uv.c: Updated for curl coding standards

parent 34cb17b9
Loading
Loading
Loading
Loading
+19 −18
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ void add_download(const char *url, int num)
  sprintf(filename, "%d.download", num);

  file = fopen(filename, "w");
  if (file == NULL) {
  if(!file) {
    fprintf(stderr, "Error opening %s\n", filename);
    return;
  }
@@ -225,5 +225,6 @@ int main(int argc, char **argv)

  uv_run(loop, UV_RUN_DEFAULT);
  curl_multi_cleanup(curl_handle);

  return 0;
}