1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

fix typos

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@417 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2005-11-17 03:46:22 +00:00
parent 00e60c32d7
commit f34f7e0336

View File

@ -376,7 +376,7 @@ void get_acpi_ac_adapter( char * p_client_buffer, size_t client_buffer_size )
{
int state;
if ( !p_client_buffer !! client_buffer_size <= 0 )
if ( !p_client_buffer || client_buffer_size <= 0 )
return;
if (GETSYSCTL("hw.acpi.acline", state)) {
@ -387,9 +387,9 @@ void get_acpi_ac_adapter( char * p_client_buffer, size_t client_buffer_size )
if (state)
strncpy( p_client_buffer, client_buffer_size, "Running on AC Power" );
strncpy( p_client_buffer, "Running on AC Power", client_buffer_size );
else
strncpy( p_client_buffer, client_buffer_size, "Running on battery" );
strncpy( p_client_buffer, "Running on battery", client_buffer_size );
return;
}