ソースを参照

Specify unused parameter

pull/158/head
Jim Parziale 2年前
コミット
59cb222aa0
2個のファイルの変更2行の追加1行の削除
  1. +1
    -1
      gpio/gpio.c
  2. +1
    -0
      wiringPi/wiringPi.h

+ 1
- 1
gpio/gpio.c ファイルの表示

@@ -499,7 +499,7 @@ void doExport (int argc, char *argv[])
* to exit the program. Crude but effective.
*********************************************************************************
*/
static void wfi (int pin)
static void wfi (UNUSED int pin)
{
exit (EXIT_SUCCESS);
}


+ 1
- 0
wiringPi/wiringPi.h ファイルの表示

@@ -34,6 +34,7 @@

// GCC warning suppressor - don't warn about unused parameters (-Wunused-parameter)
#define UNU __attribute__((unused))
#define UNUSED __attribute__((unused))

// Mask for the bottom 64 pins which belong to the Raspberry Pi
// The others are available for the other devices


読み込み中…
キャンセル
保存