Skip to content

Commit b97d080

Browse files
Remove trailing whitespaces
1 parent 0d19452 commit b97d080

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# path: "build/coverage.info"
4747
# min_coverage: 99
4848
# exclude: "**/*test*"
49-
49+
5050
formatting:
5151
runs-on: ubuntu-latest
5252
steps:

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you discover a potential security issue in this project we ask that you notif
1717

1818
## Submitting a bugs/feature request
1919
Have a bug to report or feature to request? Follow these steps:
20-
1. Search on the [FreeRTOS Community Support Forums](https://forums.freertos.org/) and [GitHub issue tracker](https://github.com/FreeRTOS/FreeRTOS/issues?utf8=%E2%9C%93&q=is%3Aissue) to be sure this hasn't been already reported or discussed.
20+
1. Search on the [FreeRTOS Community Support Forums](https://forums.freertos.org/) and [GitHub issue tracker](https://github.com/FreeRTOS/FreeRTOS/issues?utf8=%E2%9C%93&q=is%3Aissue) to be sure this hasn't been already reported or discussed.
2121
2. If your search turns up empty, create a new topic in the [forums](https://forums.freertos.org/) and work with the community to help clarify issues or refine the idea. Include as many of the details listed below.
2222
3. Once the community has had time to discuss and digest, we welcome you to create an [issue](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/issues) to report bugs or suggest features.
2323

@@ -43,8 +43,8 @@ To send us a pull request, please:
4343
2. Modify the source; focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
4444
3. Follow the [coding style guide](https://www.freertos.org/FreeRTOS-Coding-Standard-and-Style-Guide.html).
4545
4. Commit to your fork using clear commit messages.
46-
5. Send us a pull request, answering any default questions in the pull request interface.
47-
NOTE: Please make sure the default option (Allow edits from maintainers) is left checked.
46+
5. Send us a pull request, answering any default questions in the pull request interface.
47+
NOTE: Please make sure the default option (Allow edits from maintainers) is left checked.
4848
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
4949

5050
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and

History.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Changes between V2.0.0 and V2.2.1 releases:
3737
when the ID in the reply comes from the device.
3838

3939
Changes between 180821 and V2.0.0 releases:
40-
+ Move the TCP source code from FreeRTOS/FreeRTOS-Labs to FreeRTOS/FreeRTOS
40+
+ Move the TCP source code from FreeRTOS/FreeRTOS-Labs to FreeRTOS/FreeRTOS
4141
repository.
4242

4343
Changes between 160919 and 180821 releases:

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Reporting a Vulnerability
22

3-
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security
4-
via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/) or directly via email to [email protected].
3+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security
4+
via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/) or directly via email to [email protected].
55
Please do **not** create a public github issue.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Update pack_struct_start.h and pack_struct_end.h for your architecure.
2-
These files define the specifiers needed by your compiler to properly pack struct data
3-
need by FreeRTOS+TCP.
2+
These files define the specifiers needed by your compiler to properly pack struct data
3+
need by FreeRTOS+TCP.

portable/NetworkInterface/STM32Fxx/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ As long as the part has no caching, this section can be placed anywhere in RAM.
5555
On an STM32F7 with an L1 data cache, it shall be placed in the first 64KB of RAM, which is always uncached.
5656
The linker script must be changed for this, for instance as follows:
5757

58-
.data :
58+
.data :
5959
{
6060
. = ALIGN(4);
6161
_sdata = .; // create a global symbol at data start
6262
+ *(.first_data) // .first_data sections
6363
*(.data) // .data sections
6464
*(.data*) // .data* sections
65-
65+
6666
. = ALIGN(4);
6767
_edata = .; // define a global symbol at data end
6868
} >RAM AT> FLASH

test/cbmc/proofs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ list(APPEND cbmc_compile_includes
1717
${CMAKE_SOURCE_DIR}/Source/include
1818
${CMAKE_SOURCE_DIR}/Source/portable/MSVC-MingW
1919
${CMAKE_SOURCE_DIR}/Source/../../FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/portable/BufferManagement
20-
${CMAKE_SOURCE_DIR}/Source/../../FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include
20+
${CMAKE_SOURCE_DIR}/Source/../../FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include
2121
${CMAKE_SOURCE_DIR}/Source/../../FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/portable/Compiler/MSVC
2222
${cbmc_dir}/include
2323
${cbmc_dir}/windows

tools/tcp_dump_packets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Here is some contents of the output file:
4848
/*-----------------------------------------------------------*/
4949

5050
tcp_dump_packets has an enum of all possible properties of network packets:
51-
ICMP4, ICMP6, UDP, TCP, DNS, REPLY, REQUEST, SYN,
51+
ICMP4, ICMP6, UDP, TCP, DNS, REPLY, REQUEST, SYN,
5252
FIN, RST, ACK, IN, OUT, ARP, FRAME_ARP, FRAME_4, and FRAME_6
5353

5454
Each property is defined as a bit so they can be combined as in:

0 commit comments

Comments
 (0)