Removed G_GNUC_UNUSED.

This commit is contained in:
Martin Baulig
1998-10-06 09:04:27 +00:00
parent 0659b93dff
commit cf0e724f7d
18 changed files with 31 additions and 31 deletions

View File

@@ -24,10 +24,10 @@
void
handle_slave_connection (int input, int output)
{
glibtop G_GNUC_UNUSED *server = glibtop_global_server;
int64_t G_GNUC_UNUSED *param_ptr;
void G_GNUC_UNUSED *ptr;
pid_t G_GNUC_UNUSED pid;
glibtop *server = glibtop_global_server;
int64_t *param_ptr;
void *ptr;
pid_t pid;
glibtop_response _resp, *resp = &_resp;
glibtop_command _cmnd, *cmnd = &_cmnd;
@@ -98,10 +98,10 @@ handle_slave_connection (int input, int output)
void
handle_slave_command (glibtop_command *cmnd, glibtop_response *resp,
const void G_GNUC_UNUSED *parameter)
const void *parameter)
{
glibtop *server = glibtop_global_server;
pid_t G_GNUC_UNUSED pid;
pid_t pid;
switch (cmnd->command) {
case GLIBTOP_CMND_SYSDEPS: