mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:03:40 +03:00
lib/src: white space edits to comply better with code style
... as checksrc now finds and complains about these. Closes #14921
This commit is contained in:
parent
a57b45c386
commit
fbf5d507ce
128 changed files with 854 additions and 837 deletions
|
|
@ -671,7 +671,7 @@ static void printsub(struct Curl_easy *data,
|
|||
if(data->set.verbose) {
|
||||
unsigned int i = 0;
|
||||
if(direction) {
|
||||
infof(data, "%s IAC SB ", (direction == '<')? "RCVD":"SENT");
|
||||
infof(data, "%s IAC SB ", (direction == '<') ? "RCVD" : "SENT");
|
||||
if(length >= 3) {
|
||||
int j;
|
||||
|
||||
|
|
@ -721,8 +721,8 @@ static void printsub(struct Curl_easy *data,
|
|||
switch(pointer[0]) {
|
||||
case CURL_TELOPT_NAWS:
|
||||
if(length > 4)
|
||||
infof(data, "Width: %d ; Height: %d", (pointer[1]<<8) | pointer[2],
|
||||
(pointer[3]<<8) | pointer[4]);
|
||||
infof(data, "Width: %d ; Height: %d", (pointer[1] << 8) | pointer[2],
|
||||
(pointer[3] << 8) | pointer[4]);
|
||||
break;
|
||||
default:
|
||||
switch(pointer[1]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue