diff options
author | Jakob Gruber <jakob.gruber@gmail.com> | 2010-10-02 20:32:03 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-30 09:25:16 -0600 |
commit | cb7ba4e4e5c1b46b726cb6c9f10395784511bb2a (patch) | |
tree | 12ea510b3f57e53ed3c7193c874ae6721bf4c08b /lib/libalpm/alpm.h | |
parent | 619c165d36c2d89732c2658abaa61bf50ec1ac8e (diff) | |
download | pacman-cb7ba4e4e5c1b46b726cb6c9f10395784511bb2a.tar.xz |
Add const to some ALPM function signatures
char * -> const char *.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 53cfde63..ea4aa14a 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -419,10 +419,10 @@ int alpm_trans_interrupt(void); int alpm_trans_release(void); int alpm_sync_sysupgrade(int enable_downgrade); -int alpm_sync_target(char *target); -int alpm_sync_dbtarget(char *db, char *target); -int alpm_add_target(char *target); -int alpm_remove_target(char *target); +int alpm_sync_target(const char *target); +int alpm_sync_dbtarget(const char *db, const char *target); +int alpm_add_target(const char *target); +int alpm_remove_target(const char *target); /* * Dependencies and conflicts |