Skip to content

Commit 27a9f4f

Browse files
committed
Fixing formatting issues with uncrustify.
1 parent afb1e28 commit 27a9f4f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

test/build-combination/Common/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ extern void vLoggingPrint( const char * pcMessage );
219219
#define configPROFILING ( 0 )
220220

221221
/* Pseudo random number generator used by some tasks. */
222-
extern uint32_t ulRand(void);
222+
extern uint32_t ulRand( void );
223223
#define configRAND32() ulRand()
224224

225225
/* The platform that FreeRTOS is running on. */

test/build-combination/Common/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
#include <string.h>
4343
#include <stdarg.h>
4444

45-
#define mainHOST_NAME "Build Combination"
46-
#define mainDEVICE_NICK_NAME "Build_Combination"
45+
#define mainHOST_NAME "Build Combination"
46+
#define mainDEVICE_NICK_NAME "Build_Combination"
4747

4848
#if defined( _MSC_VER ) && ( _MSC_VER <= 1600 )
49-
#define local_stricmp _stricmp
49+
#define local_stricmp _stricmp
5050
#else
51-
#define local_stricmp strcasecmp
51+
#define local_stricmp strcasecmp
5252
#endif
5353
/*-----------------------------------------------------------*/
5454

test/build-combination/DefaultConf/FreeRTOSIPConfig.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838

3939
/* It is not sensible for this macro to have a default value as it is hardware
4040
* dependent. */
41-
#define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN
41+
#define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN
4242

4343
/* The windows simulator cannot really simulate MAC interrupts, and needs to
4444
* block occasionally to allow other tasks to run. */
4545
#define configWINDOWS_MAC_INTERRUPT_SIMULATOR_DELAY ( 20 / portTICK_PERIOD_MS )
4646

47-
#endif
47+
#endif /* ifndef FREERTOS_IP_CONFIG_H */

0 commit comments

Comments
 (0)