Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Another fix for pc-sounddetect to fix compilation on 10.x, this shoul…
Browse files Browse the repository at this point in the history
…d at least make the warning much more negligible.
  • Loading branch information
Ken Moore committed Nov 7, 2013
1 parent 8beb6eb commit 6f64d7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/pc-sounddetect/parse_sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const char* GetKo(xmlDocPtr doc, xmlNodePtr cur, char* chip_id) {

if(!memcmp(tempkey,chip_id,strlen(tempkey))) {
xmlFree(key);
char *name = cur->name;
const char *name = cur->name;
return name;
}
cur = cur->next;
Expand Down

0 comments on commit 6f64d7c

Please sign in to comment.