diff options
author | Jiří Pinkava <j-pi@seznam.cz> | 2015-03-24 02:43:10 +0100 |
---|---|---|
committer | Jiří Pinkava <j-pi@seznam.cz> | 2015-03-29 13:14:24 +0200 |
commit | 5c56ab77b779257bc908e45d7d7e0ff790e9e28d (patch) | |
tree | cd16c2078dfabf5f764c0052513d3740a4c4bd99 /gr-atsc | |
parent | 3dcb5b95a4296ef5f6d61fe75dd06735ac5ea467 (diff) |
do not use deprecated gr_int* types
Diffstat (limited to 'gr-atsc')
-rw-r--r-- | gr-atsc/include/gnuradio/atsc/field_sync_demux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-atsc/include/gnuradio/atsc/field_sync_demux.h b/gr-atsc/include/gnuradio/atsc/field_sync_demux.h index e12a456b51..1c31a5b98f 100644 --- a/gr-atsc/include/gnuradio/atsc/field_sync_demux.h +++ b/gr-atsc/include/gnuradio/atsc/field_sync_demux.h @@ -63,8 +63,8 @@ protected: bool d_locked; bool d_in_field2; int d_segment_number; - gr_uint64 d_next_input; - gr_uint64 d_lost_index; // diagnostic fluff + uint64_t d_next_input; + uint64_t d_lost_index; // diagnostic fluff unsigned long long d_inputs0_index; // for inputs[0].index unsigned long d_inputs0_size; // for inputs[0].size |