From: Daniel Stenberg Date: Mon, 1 Dec 2008 22:36:39 +0000 (+0000) Subject: minor indent fix X-Git-Tag: curl-7_19_3~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b062212e55a271e8829307fa82fec46dae4b3775;p=thirdparty%2Fcurl.git minor indent fix --- diff --git a/ares/ares_init.c b/ares/ares_init.c index 55c0b93ab1..79a9f0f55e 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -179,7 +179,7 @@ int ares_init_options(ares_channel *channelptr, struct ares_options *options, */ if (status == ARES_SUCCESS) { - status = init_by_options(channel, options, optmask); + status = init_by_options(channel, options, optmask); if (status != ARES_SUCCESS) DEBUGF(fprintf(stderr, "Error: init_by_options failed: %s\n", ares_strerror(status))); @@ -430,7 +430,8 @@ static int init_by_options(ares_channel channel, return ARES_ENOMEM; for (i = 0; i < options->nsort; i++) { - memcpy(&(channel->sortlist[i]), &(options->sortlist[i]), sizeof(struct apattern)); + memcpy(&(channel->sortlist[i]), &(options->sortlist[i]), + sizeof(struct apattern)); } channel->nsort = options->nsort; }