[PATCH 01/11] lib: fwts_ac_adapter: constify state

Keng-Yu Lin kengyu at canonical.com
Thu Oct 18 06:47:34 UTC 2012


On Wed, Oct 17, 2012 at 3:20 AM, Colin King <colin.king at canonical.com> wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  src/lib/include/fwts_ac_adapter.h |    2 +-
>  src/lib/src/fwts_ac_adapter.c     |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/lib/include/fwts_ac_adapter.h b/src/lib/include/fwts_ac_adapter.h
> index 905984f..9f387db 100644
> --- a/src/lib/include/fwts_ac_adapter.h
> +++ b/src/lib/include/fwts_ac_adapter.h
> @@ -27,6 +27,6 @@
>  #define FWTS_AC_ADAPTER_ONLINE (0x1)
>  #define FWTS_AC_ADAPTER_OFFLINE        (0x2)
>
> -int fwts_ac_adapter_get_state(int state, int *matching, int *not_matching);
> +int fwts_ac_adapter_get_state(const int state, int *matching, int *not_matching);
>
>  #endif
> diff --git a/src/lib/src/fwts_ac_adapter.c b/src/lib/src/fwts_ac_adapter.c
> index be07be8..9db1748 100644
> --- a/src/lib/src/fwts_ac_adapter.c
> +++ b/src/lib/src/fwts_ac_adapter.c
> @@ -70,7 +70,7 @@ static fwts_ac_interface_info fwts_ac_interfaces[] = {
>   *     not_matching is incremented for each AC adapter instance that does
>   *     not match.
>   */
> -int fwts_ac_adapter_get_state(int state, int *matching, int *not_matching)
> +int fwts_ac_adapter_get_state(const int state, int *matching, int *not_matching)
>  {
>         DIR *ac_power_dir;
>         struct dirent *entry;
> --
> 1.7.10.4
>
Acked-by: Keng-Yu Lin <kengyu at canonical.com>



More information about the fwts-devel mailing list