]> git.mxchange.org Git - simgear.git/commitdiff
Added a const in a couple places to get rid of annoying compiler warnings.
authorcurt <curt>
Mon, 7 Dec 1998 21:08:01 +0000 (21:08 +0000)
committercurt <curt>
Mon, 7 Dec 1998 21:08:01 +0000 (21:08 +0000)
Bucket/bucketutils.c
Bucket/bucketutils.h

index 0645fd69d3f6b540618c89d03d4b87741da88fd5..72ab108c18d064cba2db32a02c5bb68f59d91c96 100644 (file)
@@ -45,7 +45,7 @@
 
    3 bits - to represent x (0 to 7)
    3 bits - to represent y (0 to 7) */
-long int fgBucketGenIndex(fgBUCKET *p) {
+long int fgBucketGenIndex( const fgBUCKET *p) {
     long index = 0;
 
     index = ((p->lon + 180) << 14) + ((p->lat + 90) << 6) + (p->y << 3) + p->x;
@@ -73,7 +73,7 @@ void fgBucketParseIndex(long int index, fgBUCKET *p) {
 
 
 /* Build a path name from an tile index */
-void fgBucketGenBasePath(fgBUCKET *p, char *path) {
+void fgBucketGenBasePath( const fgBUCKET *p, char *path) {
     long int index;
     int top_lon, top_lat, main_lon, main_lat;
     char hem, pole;
@@ -267,9 +267,12 @@ int main() {
 
 
 /* $Log$
-/* Revision 1.3  1998/07/04 00:46:47  curt
-/* typedef'd struct fgBUCKET.
+/* Revision 1.4  1998/12/07 21:08:01  curt
+/* Added a const in a couple places to get rid of annoying compiler warnings.
 /*
+ * Revision 1.3  1998/07/04 00:46:47  curt
+ * typedef'd struct fgBUCKET.
+ *
  * Revision 1.2  1998/04/25 22:06:22  curt
  * Edited cvs log messages in source files ... bad bad bad!
  *
index f1925e843c07581d34178fe11aef57cbdeaa6840..694dc8872dceaf56ca9a6bc4796bff9eb4b57d69 100644 (file)
@@ -54,7 +54,7 @@ typedef struct {
 
    3 bits - to represent x (0 to 7)
    3 bits - to represent y (0 to 7) */
-long int fgBucketGenIndex(fgBUCKET *p);
+long int fgBucketGenIndex( const fgBUCKET *p);
 
 
 /* Parse a unique scenery tile index and find the lon, lat, x, and y */
@@ -62,7 +62,7 @@ void fgBucketParseIndex(long int index, fgBUCKET *p);
 
 
 /* Build a path name from an tile index */
-void fgBucketGenBasePath(fgBUCKET *p, char *path);
+void fgBucketGenBasePath( const fgBUCKET *p, char *path);
 
 
 /* offset an bucket struct by the specified amounts in the X & Y direction */
@@ -87,9 +87,12 @@ void fgBucketGenIdxArray(fgBUCKET *p1, fgBUCKET *tiles, int width, int height);
 
 
 /* $Log$
-/* Revision 1.2  1998/07/04 00:46:48  curt
-/* typedef'd struct fgBUCKET.
+/* Revision 1.3  1998/12/07 21:08:03  curt
+/* Added a const in a couple places to get rid of annoying compiler warnings.
 /*
+ * Revision 1.2  1998/07/04 00:46:48  curt
+ * typedef'd struct fgBUCKET.
+ *
  * Revision 1.1  1998/04/08 23:28:59  curt
  * Adopted Gnu automake/autoconf system.
  *