fix bug where metaflac was getting the wrong offset for seek points
authorJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 28 May 2001 21:27:28 +0000 (21:27 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 28 May 2001 21:27:28 +0000 (21:27 +0000)
src/metaflac/main.c

index 6c9f7f3..8a0351a 100644 (file)
@@ -193,7 +193,7 @@ bool list(FILE *f, bool verbose)
                                break;
                        case FLAC__METADATA_TYPE_SEEKTABLE:
                                metadata.data.seek_table.num_points = metadata.length / SEEKPOINT_LEN_;
-                               b = buf+4; /* we leave the points in buf for printing later */
+                               b = buf; /* we leave the points in buf for printing later */
                                break;
                        default:
                                printf("SKIPPING block of unknown type\n\n");