Skip to content

Commit

Permalink
Merge pull request #8 from raffenet/spelling
Browse files Browse the repository at this point in the history
spelling fix
  • Loading branch information
jjhursey authored Apr 4, 2022
2 parents 8a832b2 + 8596955 commit aa8c460
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pmix_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ do { \
} while(0)

static inline
char **pmix_argv_split(const char *src_string, int delimeter)
char **pmix_argv_split(const char *src_string, int delimiter)
{
char **argv = NULL;
char *p, *ptr;
Expand All @@ -983,7 +983,7 @@ char **pmix_argv_split(const char *src_string, int delimeter)
while ('\0' != *p) {
/* zero length argument, skip */

if (NULL == (ptr = strchr(p, delimeter))) {
if (NULL == (ptr = strchr(p, delimiter))) {
// append the remainder and we are done
rc = pmix_argv_append_nosize(&argv, p);
if (PMIX_SUCCESS != rc) {
Expand Down

0 comments on commit aa8c460

Please sign in to comment.