Skip to content

Commit 4ee60d1

Browse files
committed
Fix formatting to match libdispatch coding style.
1 parent 252642d commit 4ee60d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/shims.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
#include "shims.h"
2323

2424
#if !HAVE_STRLCPY
25-
size_t strlcpy(char *dst, const char *src, size_t size) {
25+
size_t strlcpy(char *dst, const char *src, size_t size)
26+
{
2627
size_t res = strlen(dst) + strlen(src) + 1;
2728
if (size > 0) {
2829
size_t n = size - 1;

0 commit comments

Comments
 (0)