4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/genePredToMafFrames/frameIncr.h src/hg/genePredToMafFrames/frameIncr.h
index 2638d1f..12d29b4 100644
--- src/hg/genePredToMafFrames/frameIncr.h
+++ src/hg/genePredToMafFrames/frameIncr.h
@@ -1,20 +1,20 @@
 /* frameIncr - frame increment and manipulation.  Static functions for 
  * implict inlining */
 
 /* Copyright (C) 2006 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 #ifndef FRAMEINCR_H
 #define FRAMEINCR_H
 /* Increment a frame by the specified amount, which maybe negative. frame
  * of -1 always returns -1. */
 static inline int frameIncr(int frame, int amt) {
     if (frame < 0) {
         return frame;  /* no frame not changed */
     } else if (amt >= 0) {
         return (frame + amt) % 3;
     } else {
         int amt3 = ((-amt)%3);
         return (frame - (amt-amt3)) % 3;
     }
 }
 #endif