Skip to content

Commit

Permalink
Fix unused assignment in mechglue loadConfigFile
Browse files Browse the repository at this point in the history
  • Loading branch information
greghudson committed Mar 28, 2013
1 parent 2287d34 commit eaa16b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/gssapi/mechglue/g_initialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ loadConfigFile(const char *fileName)
/* Parse out the module type if present. */
if (*next == '<') {
modType = next + 1;
next = delimit(modType, '>');
(void)delimit(modType, '>');
} else {
modType = NULL;
}
Expand Down

0 comments on commit eaa16b3

Please sign in to comment.