Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Code formating
Browse files Browse the repository at this point in the history
  • Loading branch information
OlehKulykov committed Mar 13, 2016
1 parent 0573c41 commit 0c778d3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rws_string.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ char * rws_string_copy(const char * str)

char * rws_string_copy_len(const char * str, const size_t len)
{
char * s = (str && len > 0) ? (char *)rws_malloc(len+1) : NULL;
char * s = (str && len > 0) ? (char *)rws_malloc(len + 1) : NULL;
if (s)
{
memcpy(s, str, len);
Expand Down
Binary file not shown.

0 comments on commit 0c778d3

Please sign in to comment.