Skip to content

Commit fd8dae8

Browse files
committed
Fix "warning: #1-D: last line of file ends without a newline."
And make the end of the file consistent. Signed-off-by: Yuhui Zheng <[email protected]>
1 parent 32039f1 commit fd8dae8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_pthread_barrier.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,5 @@ int pthread_barrier_wait( pthread_barrier_t * barrier )
163163

164164
return iStatus;
165165
}
166+
167+
/*-----------------------------------------------------------*/

FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_pthread_cond.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,6 @@ int pthread_cond_wait( pthread_cond_t * cond,
291291
pthread_mutex_t * mutex )
292292
{
293293
return pthread_cond_timedwait( cond, mutex, NULL );
294-
}
294+
}
295+
296+
/*-----------------------------------------------------------*/

0 commit comments

Comments
 (0)