Changeset 9272


Ignore:
Timestamp:
08/11/11 08:32:01 (14 years ago)
Author:
Mathieu Morlighem
Message:

minor: forgot to remove kn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Materials/Matpar.cpp

    r9271 r9272  
    6262        printf("   thermal_exchange_velocity: %g\n",thermal_exchange_velocity);
    6363        printf("   g: %g\n",g);
    64         printf("   kn: %g\n",kn);
    6564        return;
    6665}
     
    8281        printf("   thermal_exchange_velocity: %g\n",thermal_exchange_velocity);
    8382        printf("   g: %g\n",g);
    84         printf("   kn: %g\n",kn);
    8583        return;
    8684}               
     
    123121        memcpy(marshalled_dataset,&thermal_exchange_velocity,sizeof(thermal_exchange_velocity));marshalled_dataset+=sizeof(thermal_exchange_velocity);
    124122        memcpy(marshalled_dataset,&g,sizeof(g));marshalled_dataset+=sizeof(g);
    125         memcpy(marshalled_dataset,&kn,sizeof(kn));marshalled_dataset+=sizeof(kn);
    126123
    127124        *pmarshalled_dataset=marshalled_dataset;
     
    144141                sizeof(thermal_exchange_velocity)+
    145142                sizeof(g)+
    146                 sizeof(kn)+
    147143                sizeof(int); //sizeof(int) for enum type
    148144}
     
    171167        memcpy(&thermal_exchange_velocity,marshalled_dataset,sizeof(thermal_exchange_velocity));marshalled_dataset+=sizeof(thermal_exchange_velocity);
    172168        memcpy(&g,marshalled_dataset,sizeof(g));marshalled_dataset+=sizeof(g);
    173         memcpy(&kn,marshalled_dataset,sizeof(kn));marshalled_dataset+=sizeof(kn);
    174169
    175170        /*return: */
Note: See TracChangeset for help on using the changeset viewer.