Skip to content

Commit

Permalink
nco: cleaning print() methods for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Apr 27, 2024
1 parent d715217 commit b4460c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nco/src/nco.proto.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ int NCO(_destroy)(NCO() _q)
// Print nco object internals to stdout
int NCO(_print)(NCO() _q)
{
printf("nco [phase: 0x%.8x rad, freq: 0x%.8x rad/sample]\n",
_q->theta, _q->d_theta);
printf("<liquid.nco_%s, phase=0x%.8x, freq=0x%.8x>\n",
EXTENSION, _q->theta, _q->d_theta);
#if LIQUID_DEBUG_NCO
// print entire table
unsigned int i;
Expand Down

0 comments on commit b4460c4

Please sign in to comment.