Skip to content

Commit

Permalink
Fix compilation error due to constant expression (I)
Browse files Browse the repository at this point in the history
See #2
  • Loading branch information
orhun committed Feb 1, 2019
1 parent fba50ee commit 7fd5aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static int n, /*!< Used at raw I/Q data to complex conversion */
out_r, out_i, /*!< Real and imaginary parts of FFT *out values */
_center_freq, /*!< [ARG] RTL-SDR center frequency (mandatory) */
_dev_id = 0, /*!< [ARG] RTL-SDR device ID (optional) */
_samp_rate = n_read * 4000, /*!< [ARG] Sample rate (optional) */
_samp_rate = NUM_READ * 4000, /*!< [ARG] Sample rate (optional) */
_gain = 14, /*!< [ARG] Device gain (optional) */
_refresh_rate = 500, /*!< [ARG] Refresh interval for continuous read (optional) */
_use_gnuplot = 1, /*!< [ARG] Use gnuplot or not (optional) */
Expand Down

0 comments on commit 7fd5aa4

Please sign in to comment.