Skip to content

Commit

Permalink
Removed return statement from void function.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 6, 2010
1 parent a35799d commit 60c1a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojoshader_common.c
Expand Up @@ -211,7 +211,7 @@ StringMap *stringmap_create(const int copy, MOJOSHADER_malloc m,

void stringmap_destroy(StringMap *smap)
{
return hash_destroy(smap);
hash_destroy(smap);
} // stringmap_destroy

int stringmap_insert(StringMap *smap, const char *key, const char *value)
Expand Down

0 comments on commit 60c1a27

Please sign in to comment.