瀏覽代碼

make older versions of GCC happy

fixes the 'redefinition'-error with older versions of GCC

Signed-off-by: Steve Markgraf <steve@steve-m.de>
Steve Markgraf 13 年之前
父節點
當前提交
912a5b1e31
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/rtl-sdr.c

+ 2 - 2
src/rtl-sdr.c

@@ -137,7 +137,7 @@ static rtlsdr_device_t devices[] = {
 #define BUF_COUNT	32
 #define BUF_LENGTH	(16 * 16384)
 
-typedef struct rtlsdr_dev {
+struct rtlsdr_dev {
 	libusb_context *ctx;
 	struct libusb_device_handle *devh;
 	struct libusb_transfer *xfer[BUF_COUNT];
@@ -147,7 +147,7 @@ typedef struct rtlsdr_dev {
 	int run_async;
 	rtlsdr_tuner_t *tuner;
 	int rate; /* Hz */
-} rtlsdr_dev_t;
+};
 
 #define CRYSTAL_FREQ	28800000
 #define MAX_SAMP_RATE	3200000