Skip to content

Commit

Permalink
Style: fix whitespace
Browse files Browse the repository at this point in the history
Checked with:
    git grep "^     " -- $**.h" "**.c" ":(exclude)external"

Reported by:	Tim Wolla
  • Loading branch information
gperciva committed Jul 31, 2024
1 parent af0ca13 commit 2ae4ad1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion alg/sha256_sse2.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mm_bswap_epi32(__m128i a)
{

/* Swap bytes in each 16-bit word. */
a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8));
a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8));

/* Swap all 16-bit words. */
a = _mm_shufflelo_epi16(a, _MM_SHUFFLE(2, 3, 0, 1));
Expand Down
2 changes: 1 addition & 1 deletion netbuf/netbuf_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ void
netbuf_read_free(struct netbuf_read * R)
{

/* Behave consistently with free(NULL). */
/* Behave consistently with free(NULL). */
if (R == NULL)
return;

Expand Down
2 changes: 1 addition & 1 deletion netbuf/netbuf_write.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ netbuf_write_free(struct netbuf_write * W)
{
struct writebuf * WB;

/* Behave consistently with free(NULL). */
/* Behave consistently with free(NULL). */
if (W == NULL)
return;

Expand Down

0 comments on commit 2ae4ad1

Please sign in to comment.