382b9a0900ae6fc988915de7a27c62318f55f172 markd Wed Feb 3 13:44:59 2021 -0800 remove redundant newline diff --git src/gfServer/gfServer.c src/gfServer/gfServer.c index af03e0b..b7cf691 100644 --- src/gfServer/gfServer.c +++ src/gfServer/gfServer.c @@ -480,31 +480,31 @@ } gfClumpFreeList(&clumpList); clumpList = gfPcrClumps(gf, rPrimer, rPrimerSize, fPrimer, fPrimerSize, 0, maxDistance); for (clump = clumpList; clump != NULL; clump = clump->next) { struct gfSeqSource *ss = clump->target; safef(buf, sizeof(buf), "%s\t%d\t%d\t-", ss->fileName, clump->tStart, clump->tEnd); errSendString(connectionHandle, buf); ++clumpCount; } gfClumpFreeList(&clumpList); errSendString(connectionHandle, "end"); -logDebug("%lu PCR %s %s %d clumps\n", clock1000(), fPrimer, rPrimer, clumpCount); +logDebug("%lu PCR %s %s %d clumps", clock1000(), fPrimer, rPrimer, clumpCount); } static jmp_buf gfRecover; static char *ripCord = NULL; /* A little memory to give back to system * during error recovery. */ static void gfAbort() /* Abort query. */ { freez(&ripCord); longjmp(gfRecover, -1); } static void errorSafeSetup()