1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

code cleanup

This commit is contained in:
Aurelien Foret 2005-05-04 19:52:54 +00:00
parent a5e4fec74e
commit 14c8583ccb
2 changed files with 3 additions and 3 deletions

View File

@ -25,10 +25,10 @@
/* pacman */
#include "backup.h"
/* Look for a filename in a pkginfo_t.backup list. If we find it,
/* Look for a filename in a pmpkg_t.backup list. If we find it,
* then we return the md5 hash (parsed from the same line)
*/
char *_alpm_needbackup(char* file, PMList *backup)
char *_alpm_needbackup(char *file, PMList *backup)
{
PMList *lp;

View File

@ -23,7 +23,7 @@
#include "list.h"
char *_alpm_needbackup(char* file, PMList *backup);
char *_alpm_needbackup(char *file, PMList *backup);
#endif /* _ALPM_BACKUP_H */