1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-17 22:31:12 +01:00

34792: langinfo: Fix pointer type

This commit is contained in:
Theo Buehler 2015-03-29 06:18:48 +00:00 committed by Daniel Shahaf
parent 0b79922edb
commit b4aa9cdc76
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2015-03-29 Theo Buehler <theo@math.ethz.ch>
* 34792: Src/Modules/langinfo.c: langinfo: Fix pointer type
2015-03-29 Daniel Hahler <git@thequod.de>
* 34762: Completion/Unix/Command/_git: completion: git: add

View file

@ -395,7 +395,8 @@ liitem(const char *name)
static HashNode
getlanginfo(UNUSED(HashTable ht), const char *name)
{
int len, *elem;
int len;
nl_item *elem;
char *listr, *nameu;
Param pm = NULL;